From a0bb17434fb425b5be9e0f12f86090f1269919cb Mon Sep 17 00:00:00 2001 From: "Jeffrey C. Ollie" <jeff@ocjtech.us> Date: Fri, 9 Jun 2006 02:20:25 +0000 Subject: [PATCH] Move a couple semicolons to a more traditional location. Was pointed out by Steven <critch@basesys.com> on the -dev list. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@33152 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- include/asterisk.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/asterisk.h b/include/asterisk.h index ac04d00d69..0e2029d35f 100644 --- a/include/asterisk.h +++ b/include/asterisk.h @@ -53,8 +53,8 @@ extern char ast_config_AST_SYSTEM_NAME[20]; int ast_set_priority(int); /*!< Provided by asterisk.c */ int load_modules(const int preload_only); /*!< Provided by module.c */ int load_pbx(void); /*!< Provided by pbx.c */ -int init_logger(void) /*!< Provided by logger.c */; -void close_logger(void) /*!< Provided by logger.c */; +int init_logger(void); /*!< Provided by logger.c */ +void close_logger(void); /*!< Provided by logger.c */ int reload_logger(int); /*!< Provided by logger.c */ int init_framer(void); /*!< Provided by frame.c */ int term_init(void); /*!< Provided by term.c */ -- GitLab