1
0
mirror of https://gitlab.xiph.org/xiph/icecast-server.git synced 2024-12-04 14:46:30 -05:00

those darn EOL chars

svn path=/trunk/icecast/; revision=4196
This commit is contained in:
oddsock 2002-12-31 20:15:03 +00:00
parent a210e9f58f
commit ba5e903735
2 changed files with 9 additions and 9 deletions

View File

@ -20,11 +20,11 @@
#include "log.h" #include "log.h"
#include "logging.h" #include "logging.h"
#define CATMODULE "format" #define CATMODULE "format"
#ifdef WIN32 #ifdef WIN32
#define strcasecmp stricmp #define strcasecmp stricmp
#define strncasecmp strnicmp #define strncasecmp strnicmp
#endif #endif
format_type_t format_get_type(char *contenttype) format_type_t format_get_type(char *contenttype)
{ {

View File

@ -43,10 +43,10 @@ typedef struct {
int metadata_age; int metadata_age;
int metadata_offset; int metadata_offset;
} mp3_client_data; } mp3_client_data;
#ifdef WIN32 #ifdef WIN32
#define alloca _alloca #define alloca _alloca
#endif #endif
format_plugin_t *format_mp3_get_plugin(void) format_plugin_t *format_mp3_get_plugin(void)
{ {