mirror of
https://github.com/game-stop/veejay.git
synced 2025-12-17 21:30:02 +01:00
fix compile warnings in libOSC
This commit is contained in:
@@ -87,7 +87,7 @@ int OSCPaddedStrlen(const char *s) {
|
||||
}
|
||||
|
||||
char *OSCPaddedStrcpy(char *target, const char *source) {
|
||||
while ( (*target++) = (*source++)) {
|
||||
while ( *target++ = *source++ ) {
|
||||
/* do nothing */
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user