replace: Remove unused item returned by FAILED()
authorMartin Schwenke <martin@meltin.net>
Thu, 31 Jul 2014 01:03:59 +0000 (11:03 +1000)
committerAmitay Isaacs <amitay@gmail.com>
Thu, 21 Aug 2014 05:38:57 +0000 (15:38 +1000)
commitaeab9af93014c564975dc15953d84db42cb9a346
treec1dcec2b1fed02e3ed3609176092d82d4591af0d
parent8067abcf3e1f2585cbfc63d3af978f6abdfe4ba0
replace: Remove unused item returned by FAILED()

The (return) value of FAILED() is a constant 1.  However, it is never
used, so the compiler complains when run with -Wall:

  lib/replace/test/os2_delete.c: In function ‘cleanup’:
  lib/replace/test/os2_delete.c:39:163: warning: right-hand operand of comma expression has no effect [-Wunused-value]
   FAILED("system");

So just get remove the ", 1" since it is the bit that does nothing and
is never used.

Signed-off-by: Martin Schwenke <martin@meltin.net>
Reviewed-by: Amitay Isaacs <amitay@gmail.com>
Autobuild-User(master): Amitay Isaacs <amitay@samba.org>
Autobuild-Date(master): Wed Aug 20 16:54:31 CEST 2014 on sn-devel-104

(Imported from commit 47e7440be9ab422b3b2544c0b071fb8717a7a915)
lib/replace/test/os2_delete.c