From 7e7e0a8a559138fc00f6514dd2214ab4adc76b05 Mon Sep 17 00:00:00 2001 From: Vincent Torri Date: Sat, 19 Dec 2009 08:39:11 +0000 Subject: [PATCH] fix last void * arith SVN revision: 44562 --- src/bin/e_fm_op.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/bin/e_fm_op.c b/src/bin/e_fm_op.c index 641626e23..8c2056dd3 100644 --- a/src/bin/e_fm_op.c +++ b/src/bin/e_fm_op.c @@ -108,7 +108,7 @@ int _e_fm_op_overwrite_response = E_FM_OP_NONE; Eina_List *_e_fm_op_separator = NULL; -void *_e_fm_op_stdin_buffer = NULL; +char *_e_fm_op_stdin_buffer = NULL; struct _E_Fm_Op_Task { @@ -419,7 +419,7 @@ _e_fm_op_stdin_data(void *data, Ecore_Fd_Handler * fd_handler) int fd; static char *buf = NULL; static int length = 0; - void *begin = NULL; + char *begin = NULL; ssize_t num = 0; int msize; int identity;