diff options
author | jgeboski <jgeboski@gmail.com> | 2015-12-24 18:05:38 -0500 |
---|---|---|
committer | jgeboski <jgeboski@gmail.com> | 2015-12-24 18:05:38 -0500 |
commit | d23df657328e4f565dfba973885be7c5d2b35eae (patch) | |
tree | 23fe9684461df065cceaeb796a0fe034c240b1bb /facebook/facebook-id.h | |
parent | 3e09957c7523c9880aa810c8921bd2ed103f0858 (diff) | |
download | bitlbee-facebook-d23df657328e4f565dfba973885be7c5d2b35eae.tar.gz bitlbee-facebook-d23df657328e4f565dfba973885be7c5d2b35eae.tar.bz2 bitlbee-facebook-d23df657328e4f565dfba973885be7c5d2b35eae.tar.xz |
Coding style consistencies
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: |