summaryrefslogtreecommitdiffstats
path: root/test/external.c
diff options
context:
space:
mode:
authorDana Robinson <derobins@hdfgroup.org>2016-04-14 21:26:41 (GMT)
committerDana Robinson <derobins@hdfgroup.org>2016-04-14 21:26:41 (GMT)
commit57b7130acf69256ddaee7c6295a65c6ba16e3096 (patch)
treede6b210e9e8d559fbdb13337cbc61a24a2750449 /test/external.c
parente2c8d94ac1ccc6b7d7c16b4c53e9f55f14f41abd (diff)
downloadhdf5-57b7130acf69256ddaee7c6295a65c6ba16e3096.zip
hdf5-57b7130acf69256ddaee7c6295a65c6ba16e3096.tar.gz
hdf5-57b7130acf69256ddaee7c6295a65c6ba16e3096.tar.bz2
[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)
Diffstat (limited to 'test/external.c')
-rw-r--r--test/external.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/external.c b/test/external.c
index 1865e71..35207bd 100644
--- a/test/external.c
+++ b/test/external.c
@@ -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;
}