Skip to content

Commit

Permalink
pop3c: Compiler warning fix for using wrong enum type
Browse files Browse the repository at this point in the history
  • Loading branch information
sirainen committed Jan 26, 2016
1 parent cfb351c commit 1ac936b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib-storage/index/pop3c/pop3c-client.c
Expand Up @@ -737,7 +737,7 @@ static int
pop3c_client_input_next_reply(struct pop3c_client *client)
{
const char *line;
enum pop3c_client_state state;
enum pop3c_command_state state;

line = i_stream_read_next_line(client->input);
if (line == NULL)
Expand Down

0 comments on commit 1ac936b

Please sign in to comment.