replace: Remove unused item returned by FAILED()
commit47e7440be9ab422b3b2544c0b071fb8717a7a915
authorMartin Schwenke <martin@meltin.net>
Thu, 31 Jul 2014 01:03:59 +0000 (31 11:03 +1000)
committerAmitay Isaacs <amitay@samba.org>
Wed, 20 Aug 2014 14:54:31 +0000 (20 16:54 +0200)
tree55f40ebf504c6797e8ede790ec7cfeff1b4ac048
parent953c88395bb9a408ebfb65329aecee6ee1a43fdc
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
lib/replace/test/os2_delete.c