Fix warnings.

This commit is contained in:
Steve Checkoway
2004-02-21 10:30:07 +00:00
parent f4419954a6
commit a69570f749
+2 -2
View File
@@ -30,7 +30,7 @@
#define MAX_THREADS 128 #define MAX_THREADS 128
static const int UnknownThreadID = 0xFFFFFFFF; static const unsigned int UnknownThreadID = 0xFFFFFFFF;
struct ThreadSlot struct ThreadSlot
{ {
char name[1024]; char name[1024];
@@ -202,7 +202,7 @@ void ThreadSlot::SetupUnknownThread()
{ {
threadid = UnknownThreadID; threadid = UnknownThreadID;
sprintf(ThreadFormattedOutput, "Unknown thread", threadid, name); sprintf(ThreadFormattedOutput, "Unknown thread");
} }
void ThreadSlot::ShutdownThisThread() void ThreadSlot::ShutdownThisThread()