소스 검색

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 23 년 전
부모
커밋
3a04e399fd
2개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  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"