diff options
author | 2015-04-23 02:37:51 +0300 | |
---|---|---|
committer | 2015-04-23 02:37:51 +0300 | |
commit | fbb41f2290c0eb940bbe8f77fc2afff3974fa264 (patch) | |
tree | 046cfe16e57e60882234bf069a96cc1867ad8c20 | |
parent | 1cb8e560c208209da4220881f1232502dad5c0c8 (diff) | |
download | librin-fbb41f2290c0eb940bbe8f77fc2afff3974fa264.tar.gz librin-fbb41f2290c0eb940bbe8f77fc2afff3974fa264.tar.bz2 librin-fbb41f2290c0eb940bbe8f77fc2afff3974fa264.zip |
diagnostic: fix a nasty forgotten semicolon problem in the header.
-rw-r--r-- | include/rin/diagnostic.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/rin/diagnostic.h b/include/rin/diagnostic.h index aeff035..5101d88 100644 --- a/include/rin/diagnostic.h +++ b/include/rin/diagnostic.h @@ -22,7 +22,7 @@ #define LIBRIN_DIAGNOSTIC_INCLUDED void rin_err(const char *format, ...); -void rin_fixme(const char *format, ...) +void rin_fixme(const char *format, ...); void rin_warn(const char *format, ...); void rin_info(const char *format, ...); |