Clean up compiler warnings

This commit is contained in:
Andrew Johnson
2018-01-04 17:52:36 -06:00
parent d1fca67cf2
commit fa46935d35
2 changed files with 1 additions and 15 deletions

View File

@ -32,20 +32,6 @@ void setenv(char * a, char * b, int c)
using namespace epics::pvAccess;
using namespace epics::pvData;
static const char indata[] =
"hello = world \n"
" # oops\n"
" #dd=da\n"
" empty = \n"
" this = is a test\n\n"
;
static const char expectdata[] =
"empty = \n"
"hello = world\n"
"this = is a test\n"
;
static void showEnv(const char *name)
{
testDiag("%s = \"%s\"", name, getenv(name));