From 46c2aa4d375a6020ad76ce3a6ab0b89b0a1d0463 Mon Sep 17 00:00:00 2001 From: Francois Perrad Date: Fri, 2 Jun 2017 18:14:31 +0200 Subject: when pointer, use NULL instead of 0 --- cli-runopts.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cli-runopts.c') diff --git a/cli-runopts.c b/cli-runopts.c index 4a89ba3..ca50709 100644 --- a/cli-runopts.c +++ b/cli-runopts.c @@ -106,7 +106,7 @@ static void printhelp() { void cli_getopts(int argc, char ** argv) { unsigned int i, j; - char ** next = 0; + char ** next = NULL; enum { OPT_EXTENDED_OPTIONS, #if DROPBEAR_CLI_PUBKEY_AUTH -- cgit v1.2.1