diff options
author | Yang Tse <yangsita@gmail.com> | 2011-12-13 15:58:02 +0100 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2011-12-13 15:58:02 +0100 |
commit | b9b772fefe5f9e3ab90640f4536ab4c172658407 (patch) | |
tree | bf91aed9dec80802e6ed6bfb1f0b8dc1a0df6ce4 /lib/pop3.h | |
parent | 07efe110cc7dce18e6ef4ff73b1acbd30842471c (diff) | |
download | curl-b9b772fefe5f9e3ab90640f4536ab4c172658407.tar.gz |
pop3.c: fix compiler warning variable may be used uninitialized
Diffstat (limited to 'lib/pop3.h')
-rw-r--r-- | lib/pop3.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/pop3.h b/lib/pop3.h index e9bbd9195..5723fba01 100644 --- a/lib/pop3.h +++ b/lib/pop3.h @@ -1,5 +1,5 @@ -#ifndef __POP3_H -#define __POP3_H +#ifndef HEADER_CURL_POP3_H +#define HEADER_CURL_POP3_H /*************************************************************************** * _ _ ____ _ * Project ___| | | | _ \| | @@ -61,4 +61,4 @@ CURLcode Curl_pop3_write(struct connectdata *conn, char *str, size_t nread); -#endif /* __POP3_H */ +#endif /* HEADER_CURL_POP3_H */ |