From bf4b2881e744cd4c7a0cbce412456eeea83c5887 Mon Sep 17 00:00:00 2001 From: Tj Date: Tue, 29 Mar 2016 17:43:57 +0100 Subject: [PATCH] move version definition to start of file Signed-off-by: Tj --- cfe_generate_password.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cfe_generate_password.c b/cfe_generate_password.c index 6331dbd..904e04b 100644 --- a/cfe_generate_password.c +++ b/cfe_generate_password.c @@ -1,6 +1,7 @@ static const char *title = \ "Generate Broadcom CFE seeds and passwords for many popular modem/router devices\n" ; +static const float VERSION = 1.3f; static const char *copyright = \ "Copyright 2015 TJ \n" @@ -67,7 +68,6 @@ static const char *help = \ #include #include -static const float VERSION = 1.3f; static const size_t TIMESTAMP_SIZE = 8; static const size_t SEED_SIZE = 12; static const size_t PASSWORD_SIZE = 8; -- 2.17.1