aboutsummaryrefslogtreecommitdiff
path: root/src/decoder_control.c
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2008-11-03 21:43:02 +0100
committerMax Kellermann <max@duempel.org>2008-11-03 21:43:02 +0100
commit863badd91ed25ed37a4d1a8bb1d03fdbf285a631 (patch)
tree131774a268dbfa2aa153f23a56b0ae62a4b9ad99 /src/decoder_control.c
parentb3dfcfef52f30ccdec4011bf0c9fa051feb3590e (diff)
decoder: no CamelCase
Renamed variables and functions.
Diffstat (limited to 'src/decoder_control.c')
-rw-r--r--src/decoder_control.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/decoder_control.c b/src/decoder_control.c
index 9587d398..a1719a6f 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;