Explorar el Código

semicolon needed where progname define was replaced

git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@249 f882894a-f735-0410-b71e-b25c423dba1c
Karl DeBisschop hace 23 años
padre
commit
3a04e399fd
Se han modificado 2 ficheros con 2 adiciones y 2 borrados
  1. 1 1
      plugins/check_mysql.c
  2. 1 1
      plugins/check_pgsql.c

+ 1 - 1
plugins/check_mysql.c

@@ -14,7 +14,7 @@
 * This plugin is for testing a mysql server.
 ******************************************************************************/
 
-const char *progname = "check_mysql"
+const char *progname = "check_mysql";
 #define REVISION "$Revision$"
 #define COPYRIGHT "1999-2002"
 

+ 1 - 1
plugins/check_pgsql.c

@@ -23,7 +23,7 @@
  *
  *****************************************************************************/
 
-const char *progname = "check_pgsql"
+const char *progname = "check_pgsql";
 #define REVISION "$Revision$"
 #define COPYRIGHT "1999-2001"
 #define AUTHOR "Karl DeBisschop"