From: Steve Holme Date: Wed, 27 Feb 2013 20:35:04 +0000 (+0000) Subject: imap: Corrected char* references with char * X-Git-Tag: curl-7_30_0~245 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=cce08581ac51df51bc6c03a0f37375578b8aefd6;p=curl imap: Corrected char* references with char * Corrected char* references made in commit: 709b3506cd9b. --- diff --git a/lib/imap.c b/lib/imap.c index 37fbc453f..671f206d3 100644 --- a/lib/imap.c +++ b/lib/imap.c @@ -257,7 +257,7 @@ static CURLcode imap_sendf(struct connectdata *conn, const char *fmt, ...) * The returned string needs to be freed. * */ -static char* imap_atom(const char* str) +static char *imap_atom(const char *str) { const char *p1; char *p2;