Deleted an extraneous remove() call from a test function

that might be causing the flushrefresh test to fail.
This commit is contained in:
Dana Robinson 2017-02-08 14:49:25 -05:00
parent 9fbb672eb4
commit 46ede7f039

View File

@ -1744,9 +1744,7 @@ error:
void
h5_send_message(const char *send, const char *arg1, const char *arg2)
{
FILE *signalfile;
HDremove(TMP_SIGNAL_FILE);
FILE *signalfile = NULL;
/* Create signal file (which will send signal to some other process) */
signalfile = HDfopen(TMP_SIGNAL_FILE, "w+");