Reformat all code using astyle.
[tinc] / src / version.c
index 325a6f0..d0af1cc 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    version.c -- version information 
+    version.c -- version information
     Copyright (C) 2014      Etienne Dechamps <etienne@edechamps.fr>
 
     This program is free software; you can redistribute it and/or modify
 #include "../config.h"
 
 /* This file is always rebuilt (even if there are no changes) so that the following is updated */
-const charconst BUILD_DATE = __DATE__;
-const charconst BUILD_TIME = __TIME__;
+const char *const BUILD_DATE = __DATE__;
+const char *const BUILD_TIME = __TIME__;
 #ifdef GIT_DESCRIPTION
-const charconst BUILD_VERSION = GIT_DESCRIPTION;
+const char *const BUILD_VERSION = GIT_DESCRIPTION;
 #else
-const charconst BUILD_VERSION = VERSION;
+const char *const BUILD_VERSION = VERSION;
 #endif