diff options
Diffstat (limited to 'facebook/facebook-id.h')
-rw-r--r-- | facebook/facebook-id.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/facebook/facebook-id.h b/facebook/facebook-id.h index 92b1558..189909a 100644 --- a/facebook/facebook-id.h +++ b/facebook/facebook-id.h @@ -77,7 +77,7 @@ * * Return: The converted #FbId value. */ -#define FB_ID_FROM_STR(s) g_ascii_strtoll(s, NULL, 10) +#define FB_ID_FROM_STR(s) g_ascii_strtoll(s, NULL, 10) /** * FB_ID_IS_STR: @@ -87,7 +87,7 @@ * * Return: #TRUE if the string is an #FbId, otherwise #FALSE. */ -#define FB_ID_IS_STR(s) fb_util_strtest(s, G_ASCII_DIGIT) +#define FB_ID_IS_STR(s) fb_util_strtest(s, G_ASCII_DIGIT) /** * FB_ID_TO_STR: @@ -99,7 +99,7 @@ * * Return: The converted string value. */ -#define FB_ID_TO_STR(i, s) g_sprintf(s, "%" FB_ID_FORMAT, (FbId) i) +#define FB_ID_TO_STR(i, s) g_sprintf(s, "%" FB_ID_FORMAT, (FbId) i) /** * fb_id_equal: |