summaryrefslogtreecommitdiffstats
path: root/source/helper.c
diff options
context:
space:
mode:
authorDave Davenport <qball@gmpclient.org>2016-11-14 16:58:43 +0100
committerDave Davenport <qball@gmpclient.org>2016-11-14 16:58:43 +0100
commitd22920fd5e63f3d0b35af8092fe1c7ffe3dcffca (patch)
tree4b0d3b308309f848151139614204da9f84f1851d /source/helper.c
parent62879ee7392018f5dbfb4cfd04fc12266168b827 (diff)
Backspace->BackSpace
Diffstat (limited to 'source/helper.c')
-rw-r--r--source/helper.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/helper.c b/source/helper.c
index 8b324fab..e052e01e 100644
--- a/source/helper.c
+++ b/source/helper.c
@@ -425,7 +425,7 @@ int create_pid_file ( const char *pidfile )
int fd = g_open ( pidfile, O_RDWR | O_CREAT, S_IRUSR | S_IWUSR );
if ( fd < 0 ) {
- fprintf ( stderr, "Failed to create pid file.\n" );
+ fprintf ( stderr, "Failed to create pid file: '%s'.\n", pidfile );
return -1;
}
// Set it to close the File Descriptor on exit.