diff options
Diffstat (limited to 'common')
| -rw-r--r-- | common/file.c | 4 | ||||
| -rw-r--r-- | common/log.c | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/common/file.c b/common/file.c index afd0b75a..c12fa325 100644 --- a/common/file.c +++ b/common/file.c @@ -86,7 +86,7 @@ file_read_sections(int fd, struct list* names) } /*****************************************************************************/ -int APP_CC +static int APP_CC file_read_line(struct stream* s, char* text) { int i; @@ -140,7 +140,7 @@ file_read_line(struct stream* s, char* text) } /*****************************************************************************/ -int APP_CC +static int APP_CC file_split_name_value(char* text, char* name, char* value) { int len; diff --git a/common/log.c b/common/log.c index 05461864..eb9e9feb 100644 --- a/common/log.c +++ b/common/log.c @@ -89,7 +89,7 @@ log_xrdp2syslog(const int lvl) * @return syslog equivalent logging level * */ -void DEFAULT_CC +static void DEFAULT_CC log_lvl2str(int lvl, char* str) { switch (lvl) |
