[MINOR] fix a few remaining printf-like formats on 64-bit platforms

Mainly two sizeof() returning size_t which is not the size of an int
on 64-bit platforms.
diff --git a/src/cfgparse.c b/src/cfgparse.c
index 46cc1a6..83e8af6 100644
--- a/src/cfgparse.c
+++ b/src/cfgparse.c
@@ -3091,7 +3091,7 @@
 			 * Watch out for the last line without the terminating '\n'!
 			 */
 			Alert("parsing [%s:%d]: line too long, limit: %d.\n",
-				file, linenum, sizeof(thisline)-1);
+			      file, linenum, (int)sizeof(thisline)-1);
 			goto err;
 		}
 
diff --git a/src/standard.c b/src/standard.c
index 2465619..906f2a7 100644
--- a/src/standard.c
+++ b/src/standard.c
@@ -128,7 +128,7 @@
 	strsz = strlen(str) + 1;
 	if (strsz > sizeof(su.sun_path)) {
 		Alert("Socket path '%s' too long (max %d)\n",
-			str, sizeof(su.sun_path) - 1);
+		      str, (int)sizeof(su.sun_path) - 1);
 	} else {
 		su.sun_family = AF_UNIX;
 		memcpy(su.sun_path, str, strsz);