aboutsummaryrefslogtreecommitdiff
path: root/src/tag.h
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2009-02-27 08:06:59 +0100
committerMax Kellermann <max@duempel.org>2009-02-27 08:06:59 +0100
commit5b07cbf0b4428213fee154c2e92b74606abedc2b (patch)
treedb78f1b8e3945b7fddfe194ee8c807738816c99a /src/tag.h
parentbcdf947afcccf80fe658a894d14fce3777cd8fe6 (diff)
tag: make tag_equal() return bool
Diffstat (limited to 'src/tag.h')
-rw-r--r--src/tag.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tag.h b/src/tag.h
index ccaf301d..52e66bb7 100644
--- a/src/tag.h
+++ b/src/tag.h
@@ -137,6 +137,6 @@ tag_get_value(const struct tag *tag, enum tag_type type);
*/
bool tag_has_type(const struct tag *tag, enum tag_type type);
-int tag_equal(const struct tag *tag1, const struct tag *tag2);
+bool tag_equal(const struct tag *tag1, const struct tag *tag2);
#endif