summary refs log tree commit diff stats
path: root/src
diff options
context:
space:
mode:
authorErik de Castro Lopo <erikd@mega-nerd.com>2016-05-28 16:35:45 +1000
committerErik de Castro Lopo <erikd@mega-nerd.com>2016-05-28 16:35:45 +1000
commit10e429b85d4108bb453ab80c68050ba8472f4c4d (patch)
tree6f4b94d323a8b563d7dca018f94d7aa694f77b64 /src
parent6554a8d63ccd3304bf378a427bce17579ea358f3 (diff)
Remove two un-needed type casts
Diffstat (limited to 'src')
-rw-r--r--src/common/outbound.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/outbound.c b/src/common/outbound.c
index 2342fd64..539331a7 100644
--- a/src/common/outbound.c
+++ b/src/common/outbound.c
@@ -162,8 +162,8 @@ process_data_init (char *buf, char *cmd, char *word[],
 
 	word[0] = "\000\000";
 	word_eol[0] = "\000\000";
-	word[1] = (char *)buf;
-	word_eol[1] = (char *)cmd;
+	word[1] = buf;
+	word_eol[1] = cmd;
 
 	while (1)
 	{