diff options
Diffstat (limited to 'src/decoder_control.c')
-rw-r--r-- | src/decoder_control.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/decoder_control.c b/src/decoder_control.c index 9587d3980..a1719a6f6 100644 --- a/src/decoder_control.c +++ b/src/decoder_control.c @@ -93,11 +93,11 @@ dc_seek(struct notify *notify, double where) if (dc.state == DECODE_STATE_STOP || !dc.seekable) return false; - dc.seekWhere = where; - dc.seekError = false; + dc.seek_where = where; + dc.seek_error = false; dc_command(notify, DECODE_COMMAND_SEEK); - if (dc.seekError) + if (dc.seek_error) return false; return true; |