fixed compiler warnings

This commit is contained in:
john30
2017-01-28 09:32:07 +01:00
parent 06b3fa30f4
commit 937e0ed9e5
2 changed files with 10 additions and 10 deletions
+4 -4
View File
@@ -57,14 +57,14 @@ static struct options opt = {
};
/** the version string of the program. */
const char *argp_program_version = "ebusfeed of """PACKAGE_STRING"";
const char *argp_program_version = "ebusfeed of """ PACKAGE_STRING "";
/** the report bugs to address of the program. */
const char *argp_program_bug_address = ""PACKAGE_BUGREPORT"";
const char *argp_program_bug_address = "" PACKAGE_BUGREPORT "";
/** the documentation of the program. */
static const char argpdoc[] =
"Feed data from an "PACKAGE" DUMPFILE to a serial device.\n"
"Feed data from an " PACKAGE " DUMPFILE to a serial device.\n"
"\v"
"With no DUMPFILE, /tmp/ebus_dump.bin is used.\n"
"\n"
@@ -73,7 +73,7 @@ static const char argpdoc[] =
" 2. create symbol links to appropriate devices, e.g.\n"
" 'ln -s /dev/pts/2 /dev/ttyUSB60'\n"
" 'ln -s /dev/pts/3 /dev/ttyUSB20'\n"
" 3. start "PACKAGE": '"PACKAGE" -f -d /dev/ttyUSB20 --nodevicecheck'\n"
" 3. start " PACKAGE ": '" PACKAGE " -f -d /dev/ttyUSB20 --nodevicecheck'\n"
" 4. start ebusfeed: 'ebusfeed /path/to/ebus_dump.bin'\n";
/** the description of the accepted arguments. */