Code

libcollectdclient: Fix a typo.
authorFlorian Forster <octo@huhu.verplant.org>
Wed, 6 May 2009 12:41:11 +0000 (14:41 +0200)
committerFlorian Forster <octo@huhu.verplant.org>
Wed, 6 May 2009 12:41:11 +0000 (14:41 +0200)
src/libcollectdclient/client.c

index 2d2a73afd79fa54f57d6452dcda85931bd824720..501c729c143e53227a6256ace249295103136650 100644 (file)
@@ -121,7 +121,7 @@ char *sstrerror (int errnum, char *buf, size_t buflen)
   buf[0] = 0;
 
 #if !HAVE_STRERROR_R
-  snprintf (buf, buflen "Error #%i; strerror_r is not available.", errnum);
+  snprintf (buf, buflen, "Error #%i; strerror_r is not available.", errnum);
 /* #endif !HAVE_STRERROR_R */
 
 #elif STRERROR_R_CHAR_P