diff options
author | cbdev <cb@cbcdn.com> | 2018-03-25 15:15:12 +0200 |
---|---|---|
committer | cbdev <cb@cbcdn.com> | 2018-03-25 15:15:12 +0200 |
commit | 0e5d29d5f2fca9569e42149f741d50a883447a24 (patch) | |
tree | 8fb1d70372898927d76fbb17275f0095a685dd38 | |
parent | 323db724551f2e1908aa0341a5d2b6e03ce351ae (diff) | |
download | midimonster-0e5d29d5f2fca9569e42149f741d50a883447a24.tar.gz midimonster-0e5d29d5f2fca9569e42149f741d50a883447a24.tar.bz2 midimonster-0e5d29d5f2fca9569e42149f741d50a883447a24.zip |
Fix syntax
-rw-r--r-- | backend.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -217,8 +217,7 @@ struct timeval backend_timeout(){ msecs = res % 1000; } else if(res / 1000 == secs && (res % 1000) < msecs){ - msecs = res % 1000; - } + msecs = res % 1000; } } } |