[svn-r29698] Switched true and false to TRUE and FALSE in a function in

test/external.c.

Tested on: 64-bit Ubuntu 15.10 w/ gcc 5.2.1
           autotools serial (external test only)
This commit is contained in:
Dana Robinson 2016-04-14 16:26:41 -05:00
parent e2c8d94ac1
commit 57b7130acf

View File

@ -59,7 +59,7 @@ files_have_same_contents(const char *name1, const char *name2)
int fd1 = 0, fd2 = 0;
ssize_t n1, n2;
char buf1[1024], buf2[1024];
hbool_t ret = false; /* not equal until proven otherwise */
hbool_t ret = FALSE; /* not equal until proven otherwise */
if((fd1 = HDopen(name1, O_RDONLY, 0666)) < 0)
goto out;
@ -82,7 +82,7 @@ files_have_same_contents(const char *name1, const char *name2)
break;
if(n1 == 0 && n2 == 0) {
ret = true;
ret = TRUE;
break;
}