Changeset 850fd32 in mainline for uspace/app/wavplay


Ignore:
Timestamp:
2018-03-11T01:21:19Z (8 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
84239b1, f0e825d
Parents:
338d54a7
Message:

Fix mischievious semicolons.

Location:
uspace/app/wavplay
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/wavplay/dplay.c

    r338d54a7 r850fd32  
    176176        }
    177177
    178         for (pb->playing = true; pb->playing;
    179             fibril_condvar_wait(&pb->cv, &pb->mutex));
     178        pb->playing = true;
     179        while (pb->playing)
     180                fibril_condvar_wait(&pb->cv, &pb->mutex);
    180181
    181182        fibril_mutex_unlock(&pb->mutex);
  • uspace/app/wavplay/main.c

    r338d54a7 r850fd32  
    260260                        print_help(*argv);
    261261                        return 0;
    262                 };
     262                }
    263263        }
    264264
Note: See TracChangeset for help on using the changeset viewer.