aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve Holme <steve_holme@hotmail.com>2013-02-27 20:35:04 +0000
committerSteve Holme <steve_holme@hotmail.com>2013-02-27 20:35:04 +0000
commitcce08581ac51df51bc6c03a0f37375578b8aefd6 (patch)
treef1afc36b264e84be2153bb5a3c408fe735488791
parentc368fbcb1031198d36d964c649eb7730ee2a5844 (diff)
imap: Corrected char* references with char *
Corrected char* references made in commit: 709b3506cd9b.
-rw-r--r--lib/imap.c2
1 files changed, 1 insertions, 1 deletions
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;