Mercurial > mplayer.hg
changeset 33015:56f979f98698
Remove pointless initializers.
author | reimar |
---|---|
date | Thu, 24 Mar 2011 21:57:08 +0000 |
parents | 55a5a5e334dc |
children | 88a7bd86e3ac |
files | mp_fifo.c |
diffstat | 1 files changed, 3 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/mp_fifo.c Thu Mar 24 21:56:34 2011 +0000 +++ b/mp_fifo.c Thu Mar 24 21:57:08 2011 +0000 @@ -23,9 +23,9 @@ #include "mp_fifo.h" int key_fifo_size = 7; -static int *key_fifo_data = NULL; -static unsigned key_fifo_read=0; -static unsigned key_fifo_write=0; +static int *key_fifo_data; +static unsigned key_fifo_read; +static unsigned key_fifo_write; static void mplayer_put_key_internal(int code){ int fifo_free = key_fifo_read + key_fifo_size - key_fifo_write;