Changeset 5d6c178 for protocols/oscar/oscar_util.c
- Timestamp:
- 2006-05-10T12:47:55Z (18 years ago)
- Branches:
- master
- Children:
- 764b0aba
- Parents:
- 64d1f45
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
protocols/oscar/oscar_util.c
r64d1f45 r5d6c178 109 109 110 110 curPtr = sn; 111 while ( (*curPtr) != (char) NULL) {111 while ( (*curPtr) != (char) '\0') { 112 112 if ((*curPtr) != ' ') 113 113 i++; … … 140 140 curPtr1 = sn1; 141 141 curPtr2 = sn2; 142 while ( (*curPtr1 != (char) NULL) && (*curPtr2 != (char) NULL) ) {142 while ( (*curPtr1 != (char) '\0') && (*curPtr2 != (char) '\0') ) { 143 143 if ( (*curPtr1 == ' ') || (*curPtr2 == ' ') ) { 144 144 if (*curPtr1 == ' ')
Note: See TracChangeset
for help on using the changeset viewer.