1
0
mirror of https://gitlab.xiph.org/xiph/icecast-common.git synced 2024-06-16 06:15:24 +00:00

Minor cleanup.

svn path=/trunk/log/; revision=2200
This commit is contained in:
Jack Moffitt 2001-10-20 16:47:01 +00:00
parent 42ce945f12
commit 15ec22923f
2 changed files with 2 additions and 1 deletions

View File

@ -95,7 +95,7 @@ int log_open(const char *filename)
int log_open_with_buffer(const char *filename, int size)
{
/* not implemented */
return 0;
return LOG_ENOTIMPL;
}
void log_set_level(int log_id, int level)

View File

@ -5,6 +5,7 @@
#define LOG_ENOMORELOGS -2
#define LOG_ECANTOPEN -3
#define LOG_ENOTOPEN -4
#define LOG_ENOTIMPL -5
void log_initialize();