From c36f73bd317dd55d7e70275a6425faa4be7bfd8c Mon Sep 17 00:00:00 2001 From: Wilmer van der Gaast Date: Fri, 23 Jul 2010 15:35:45 +0100 Subject: This should mostly be a no-op, merging *loads* of whitespace changes from libyahoo2 so that I can see better what really changed. --- protocols/yahoo/yahoo_util.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'protocols/yahoo/yahoo_util.c') 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); -- cgit v1.2.3