]> mj.ucw.cz Git - libucw.git/commitdiff
Typo.
authorDaniel Fiala <danfiala@ucw.cz>
Fri, 14 May 2010 15:29:20 +0000 (17:29 +0200)
committerDaniel Fiala <danfiala@ucw.cz>
Fri, 14 May 2010 15:29:20 +0000 (17:29 +0200)
ucw/strtonum.h

index f4ff4f7a06d73d349a9d31e42b3ceea37b092f00..03ec68958536c046dc11fd04a0280a9c7b31e901 100644 (file)
@@ -37,7 +37,7 @@ const char *str_to_##suffix(type *num, const char *str, const char **next, const
 #define STN_SIGNED_CONVERTOR(utype, itype, suffix)                                                  \
 static inline const char *str_to_##suffix(itype *num, const char *str, const char **next, const uns flags) \
 {                                                                                                   \
-  return str_to##suffix((utype*) num, str, next, flags | STN_SIGNED);                               \
+  return str_to_##suffix((utype*) num, str, next, flags | STN_SIGNED);                               \
 }
 
 STN_DECLARE_CONVERTOR(uns, uns);