diff options
author | Jonathan Neuschäfer <j.neuschaefer@gmx.net> | 2011-07-25 21:55:43 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2011-08-27 11:30:34 +0200 |
commit | 310895f0606ebe1f88e20755f221c51cc66a63df (patch) | |
tree | 1e3c4727d39cc9dc889780511b7d7d365038ea63 /src/output/null_plugin.c | |
parent | 4428894abaa4d40c443cabbf6c1eb467d6f55791 (diff) | |
download | mpd-310895f0606ebe1f88e20755f221c51cc66a63df.tar.gz mpd-310895f0606ebe1f88e20755f221c51cc66a63df.tar.xz mpd-310895f0606ebe1f88e20755f221c51cc66a63df.zip |
rename 'Timer' to 'struct timer'
Diffstat (limited to 'src/output/null_plugin.c')
-rw-r--r-- | src/output/null_plugin.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/output/null_plugin.c b/src/output/null_plugin.c index 5ccb1c00d..f572959a0 100644 --- a/src/output/null_plugin.c +++ b/src/output/null_plugin.c @@ -28,7 +28,7 @@ struct null_data { bool sync; - Timer *timer; + struct timer *timer; }; static void * @@ -82,7 +82,7 @@ null_play(void *data, G_GNUC_UNUSED const void *chunk, size_t size, G_GNUC_UNUSED GError **error) { struct null_data *nd = data; - Timer *timer = nd->timer; + struct timer *timer = nd->timer; if (!nd->sync) return size; |