From: Rich Salz Date: Thu, 4 Aug 2016 18:29:53 +0000 (-0400) Subject: Fix output text to avoid gratuitious git diff X-Git-Tag: OpenSSL_1_1_0~279 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=dc57696ceec4643da1cbb69f9d1491a96e5126c4;p=oweals%2Fopenssl.git Fix output text to avoid gratuitious git diff Reviewed-by: Richard Levitte --- diff --git a/apps/progs.pl b/apps/progs.pl index 3ec16d54cb..21baf173cf 100644 --- a/apps/progs.pl +++ b/apps/progs.pl @@ -48,7 +48,7 @@ typedef enum FUNC_TYPE { typedef struct function_st { FUNC_TYPE type; const char *name; - int (*func)(int argc,char *argv[]); + int (*func)(int argc, char *argv[]); const OPTIONS *help; } FUNCTION;