diff options
author | nia <[email protected]> | 2020-04-05 11:01:34 +0100 |
---|---|---|
committer | Matthew Gregan <[email protected]> | 2020-04-07 14:51:50 +1200 |
commit | 8a4170a8631dfdb3e5b5de7e5062a1e0b00be730 (patch) | |
tree | f67f9a6f56f2716d07c39ddd1266741e8f049b22 /src/cubeb_sun.c | |
parent | 969690237721218c3b8c4c2ba1f9a5492fe816ca (diff) | |
download | cubeb-8a4170a8631dfdb3e5b5de7e5062a1e0b00be730.tar.gz cubeb-8a4170a8631dfdb3e5b5de7e5062a1e0b00be730.zip |
sun: Line continuation character not needed
Diffstat (limited to 'src/cubeb_sun.c')
-rw-r--r-- | src/cubeb_sun.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cubeb_sun.c b/src/cubeb_sun.c index e65fe3b..45483fc 100644 --- a/src/cubeb_sun.c +++ b/src/cubeb_sun.c @@ -604,7 +604,7 @@ sun_stream_init(cubeb * context, ret = CUBEB_ERROR; goto error; } - s->record.frame_size = s->record.info.record.channels * \ + s->record.frame_size = s->record.info.record.channels * (s->record.info.record.precision / 8); if (s->record.fd != -1 && (s->record.buf = calloc(SUN_BUFFER_FRAMES, s->record.frame_size)) == NULL) { |