From 3f0c50e5a0eba982aca4ff377b1018018fb16b64 Mon Sep 17 00:00:00 2001 From: John Tytgat Date: Sun, 1 Feb 2009 13:37:32 +0000 Subject: - C strings have always an implicit NUL character at the end, no need to specify an extra one. - riscos/configure/con_theme.c: removed spurious code line. svn path=/trunk/netsurf/; revision=6331 --- amiga/arexx.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'amiga/arexx.c') diff --git a/amiga/arexx.c b/amiga/arexx.c index bef46cdf3..5d6a60938 100755 --- a/amiga/arexx.c +++ b/amiga/arexx.c @@ -156,7 +156,7 @@ STATIC VOID rx_geturl(struct ARexxCmd *cmd, struct RexxMsg *rxm __attribute__((u } else { - strcpy(result,"\0"); + strcpy(result,""); } cmd->ac_Result = result; @@ -170,7 +170,7 @@ STATIC VOID rx_gettitle(struct ARexxCmd *cmd, struct RexxMsg *rxm __attribute__( } else { - strcpy(result,"\0"); + strcpy(result,""); } cmd->ac_Result = result; -- cgit v1.2.3