diff options
author | Wilmer van der Gaast <wilmer@gaast.net> | 2010-07-23 15:35:45 +0100 |
---|---|---|
committer | Wilmer van der Gaast <wilmer@gaast.net> | 2010-07-23 15:35:45 +0100 |
commit | c36f73bd317dd55d7e70275a6425faa4be7bfd8c (patch) | |
tree | abdd51dc28d2dcd20d5b5f518b41cedf4e6a07cb /protocols/yahoo/yahoo_util.c | |
parent | 938c30512f4dac4f084fd6bb8b7f41655de9bce4 (diff) |
This should mostly be a no-op, merging *loads* of whitespace changes from
libyahoo2 so that I can see better what really changed.
Diffstat (limited to 'protocols/yahoo/yahoo_util.c')
-rw-r--r-- | protocols/yahoo/yahoo_util.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/protocols/yahoo/yahoo_util.c b/protocols/yahoo/yahoo_util.c index 5375205f..33a12674 100644 --- a/protocols/yahoo/yahoo_util.c +++ b/protocols/yahoo/yahoo_util.c @@ -35,12 +35,12 @@ char *strchr (), *strrchr (); #include "yahoo_util.h" -char * y_string_append(char * string, char * append) +char *y_string_append(char *string, char *append) { int size = strlen(string) + strlen(append) + 1; - char * new_string = y_renew(char, string, size); + char *new_string = y_renew(char, string, size); - if(new_string == NULL) { + if (new_string == NULL) { new_string = y_new(char, size); strcpy(new_string, string); FREE(string); |