diff options
author | David Robillard <d@drobilla.net> | 2011-04-30 02:07:42 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2011-04-30 02:07:42 +0000 |
commit | 6c72abfc6d6649f07d85f70b25ce4393dc775a39 (patch) | |
tree | d87d8cc347a43b3b02d97caa6666848448c7e92c /src/query.c | |
parent | 054c39b12cb610d79006f0b51153cb2c4aa5a0b7 (diff) | |
download | lilv-6c72abfc6d6649f07d85f70b25ce4393dc775a39.tar.gz lilv-6c72abfc6d6649f07d85f70b25ce4393dc775a39.tar.bz2 lilv-6c72abfc6d6649f07d85f70b25ce4393dc775a39.zip |
Tidy.
git-svn-id: http://svn.drobilla.net/lad/trunk/lilv@3241 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/query.c')
-rw-r--r-- | src/query.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/query.c b/src/query.c index 1155e44..5f6cc57 100644 --- a/src/query.c +++ b/src/query.c @@ -24,9 +24,9 @@ #include "lilv_internal.h" typedef enum { - LILV_LANG_MATCH_NONE, ///< Language does not match at all - LILV_LANG_MATCH_PARTIAL, ///< Partial (language, but not country) match - LILV_LANG_MATCH_EXACT ///< Exact (language and country) match + LILV_LANG_MATCH_NONE, ///< Language does not match at all + LILV_LANG_MATCH_PARTIAL, ///< Partial (language, but not country) match + LILV_LANG_MATCH_EXACT ///< Exact (language and country) match } LilvLangMatch; static LilvLangMatch @@ -57,9 +57,9 @@ LilvNodes* lilv_nodes_from_stream_objects_i18n(LilvWorld* world, SordIter* stream) { - LilvNodes* values = lilv_nodes_new(); - const SordNode* nolang = NULL; // Untranslated value - const SordNode* partial = NULL; // Partial language match + LilvNodes* values = lilv_nodes_new(); + const SordNode* nolang = NULL; // Untranslated value + const SordNode* partial = NULL; // Partial language match char* syslang = lilv_get_lang(); FOREACH_MATCH(stream) { const SordNode* value = lilv_match_object(stream); |