fix compile warnings in libOSC

This commit is contained in:
niels
2015-07-25 17:34:03 +02:00
parent 6cf5b5809c
commit cc643c67dd
6 changed files with 15 additions and 59 deletions

View File

@@ -87,7 +87,7 @@ int OSCPaddedStrlen(const char *s) {
}
char *OSCPaddedStrcpy(char *target, const char *source) {
while ( (*target++) = (*source++)) {
while ( *target++ = *source++ ) {
/* do nothing */
}