diff options
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); | 
