Fix some warnings

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@5970 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Jérôme Duval
2004-01-07 08:29:53 +00:00
parent 10186d5dda
commit 123724ad1f
3 changed files with 1235 additions and 1236 deletions
@@ -42,7 +42,6 @@ static sem_id loglock;
void debug_printf(const char *text,...); void debug_printf(const char *text,...);
void log_printf(const char *text,...); void log_printf(const char *text,...);
void log_create();
void debug_printf(const char *text,...) void debug_printf(const char *text,...)
{ {
@@ -67,7 +67,7 @@
extern "C" { extern "C" {
#endif #endif
void log_create(); void log_create(void);
void log_printf(const char *text,...); void log_printf(const char *text,...);
void debug_printf(const char *text,...); void debug_printf(const char *text,...);
#ifdef __cplusplus #ifdef __cplusplus
@@ -78,7 +78,7 @@ extern "C" {
#ifdef __cplusplus #ifdef __cplusplus
extern "C" { extern "C" {
#endif #endif
void log_create(); void log_create(void);
void debug_printf(const char *text,...); void debug_printf(const char *text,...);
#ifdef __cplusplus #ifdef __cplusplus
} }
@@ -696,7 +696,7 @@ protected :
// //
// Load code into ASIC // Load code into ASIC
// //
virtual BOOL LoadASIC( DWORD dwCmd, PBYTE pCode, DWORD dwSize ); BOOL LoadASIC( DWORD dwCmd, PBYTE pCode, DWORD dwSize );
virtual BOOL LoadASIC() { return TRUE; } virtual BOOL LoadASIC() { return TRUE; }
// //