]> sigrok.org Git - libsigrok.git/blobdiff - src/input/wav.c
Random whitespace and other minor fixes.
[libsigrok.git] / src / input / wav.c
index 88ddd7a814dd07b5f4ab18477871ff1b82fbe531..611878e850495f79342cb0b4091c61d2dc9b50d4 100644 (file)
@@ -160,7 +160,7 @@ static int find_data_chunk(GString *buf, int initial_offset)
        unsigned int offset, i;
 
        offset = initial_offset;
-       while(offset < MIN(MAX_DATA_CHUNK_OFFSET, buf->len)) {
+       while (offset < MIN(MAX_DATA_CHUNK_OFFSET, buf->len)) {
                if (!memcmp(buf->str + offset, "data", 4))
                        /* Skip into the samples. */
                        return offset + 8;