diff options
author | David Robillard <d@drobilla.net> | 2020-12-16 17:01:06 +0100 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2020-12-16 17:01:06 +0100 |
commit | 35f6c636982f174f344cccbe54d61bf1fc7618fd (patch) | |
tree | b67651ab7e00019b90654c8f9e874fcf1c390afc /test | |
parent | ff24f14c0971f1fcbbb061bbedbd384874ed3957 (diff) | |
download | lilv-35f6c636982f174f344cccbe54d61bf1fc7618fd.tar.gz lilv-35f6c636982f174f344cccbe54d61bf1fc7618fd.tar.bz2 lilv-35f6c636982f174f344cccbe54d61bf1fc7618fd.zip |
Fix inconsistent parameter name
Diffstat (limited to 'test')
-rw-r--r-- | test/lilv_test_utils.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/lilv_test_utils.c b/test/lilv_test_utils.c index cfc5c4f..38754b0 100644 --- a/test/lilv_test_utils.c +++ b/test/lilv_test_utils.c @@ -132,9 +132,9 @@ create_bundle(LilvTestEnv* env, const char* manifest, const char* plugin) } int -start_bundle(LilvTestEnv* env, const char* manifest, const char* content) +start_bundle(LilvTestEnv* env, const char* manifest, const char* plugin) { - if (create_bundle(env, manifest, content)) { + if (create_bundle(env, manifest, plugin)) { return 1; } |