From: Andre Noll Date: Sun, 15 Jan 2012 16:13:33 +0000 (+0100) Subject: command.c: Fix typo in comment. X-Git-Tag: v0.4.10~18 X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=commitdiff_plain;h=bbeafca82b73402b6984177d22628dda6325774d command.c: Fix typo in comment. --- diff --git a/command.c b/command.c index d024b889..f194a7c1 100644 --- a/command.c +++ b/command.c @@ -126,7 +126,7 @@ static char *get_status(struct misc_meta_data *nmmd, int parser_friendly) * The calls to WRITE_STATUS_ITEM() below never fail because * b->max_size is zero (unlimited), see para_printf(). However, clang * is not smart enough to prove this and complains nevertheless. - * Casting the return value to void silences solves this. + * Casting the return value to void silences clang. */ (void)WRITE_STATUS_ITEM(&b, SI_FILE_SIZE, "%zu\n", nmmd->size / 1024); (void)WRITE_STATUS_ITEM(&b, SI_MTIME, "%s\n", mtime);