# HG changeset patch # User Christian Hammond # Date 1057820123 0 # Node ID f7ddc1f6227e37c8c93c1538b8b3559551742e58 # Parent abde20a18051bb719ecd5d3dda91f60d21e410de [gaim-migrate @ 6534] This should prevent warnings on some compilers. This change will either make all warnings go away and have MSN continue to run as normal, or cause MSN to crash on almost every message. I'm not sure yet. I'll wait for the bug reports. committer: Tailor Script diff -r abde20a18051 -r f7ddc1f6227e src/protocols/msn/msg.c --- a/src/protocols/msn/msg.c Thu Jul 10 06:48:14 2003 +0000 +++ b/src/protocols/msn/msg.c Thu Jul 10 06:55:23 2003 +0000 @@ -26,7 +26,7 @@ while (*(tmp) && *(tmp) != ' ' && *(tmp) != '\r') \ (tmp)++; \ if (*(tmp) != '\0') *(tmp)++ = '\0'; \ - if (*(tmp) == '\n') *(tmp)++; \ + if (*(tmp) == '\n') (tmp)++; \ while (*(tmp) && *(tmp) == ' ') \ (tmp)++ @@ -34,7 +34,7 @@ while (*(tmp) && *(tmp) != '\r') \ (tmp)++; \ if (*(tmp) != '\0') *(tmp)++ = '\0'; \ - if (*(tmp) == '\n') *(tmp)++ + if (*(tmp) == '\n') (tmp)++ /* * "MIME-Version: 1.0\r\n" == 19