diff options
author | Chris Michael <cp.michael@samsung.com> | 2013-08-05 13:16:44 +0100 |
---|---|---|
committer | Chris Michael <cp.michael@samsung.com> | 2013-08-05 13:16:44 +0100 |
commit | b211a27d6711460998a494649e0c5b9967865b1f (patch) | |
tree | 2afbd02cd8ae4f92e7c9c09879dff6023634e5bc /src/lib/ecore_audio | |
parent | b344ef2440c8f5516c5ccc632a63740670fdfde5 (diff) |
Init fd to zero (removes compiler warning).
Signed-off-by: Chris Michael <cp.michael@samsung.com>
Diffstat (limited to 'src/lib/ecore_audio')
-rw-r--r-- | src/lib/ecore_audio/ecore_audio_pulse_ml.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/ecore_audio/ecore_audio_pulse_ml.c b/src/lib/ecore_audio/ecore_audio_pulse_ml.c index 7abf7c23a2..38f3d40c43 100644 --- a/src/lib/ecore_audio/ecore_audio_pulse_ml.c +++ b/src/lib/ecore_audio/ecore_audio_pulse_ml.c | |||
@@ -45,7 +45,7 @@ _ecore_io_wrapper(void *data, Ecore_Fd_Handler *handler) | |||
45 | char buf[64]; | 45 | char buf[64]; |
46 | pa_io_event_flags_t flags = 0; | 46 | pa_io_event_flags_t flags = 0; |
47 | pa_io_event *event = (pa_io_event *)data; | 47 | pa_io_event *event = (pa_io_event *)data; |
48 | int fd; | 48 | int fd = 0; |
49 | 49 | ||
50 | if (ecore_main_fd_handler_active_get(handler, ECORE_FD_READ)) | 50 | if (ecore_main_fd_handler_active_get(handler, ECORE_FD_READ)) |
51 | { | 51 | { |