Commit 28a382bd 28a382bd985eaf665945e948f2a7428996d99da2 by Alain Magloire

len should be type int.

1 parent 3380b97d
...@@ -937,7 +937,7 @@ imap_quoted_string (f_imap_t f_imap, char **ptr) ...@@ -937,7 +937,7 @@ imap_quoted_string (f_imap_t f_imap, char **ptr)
937 { 937 {
938 char *bquote; 938 char *bquote;
939 int escaped = 0; 939 int escaped = 0;
940 size_t len; 940 int len;
941 941
942 (*ptr)++; 942 (*ptr)++;
943 bquote = *ptr; 943 bquote = *ptr;
......