Fix a warning

This commit is contained in:
Torsten Dreyer
2017-08-12 22:34:52 +02:00
parent e589ef8627
commit dfd6076e19
2 changed files with 2 additions and 2 deletions

View File

@@ -531,7 +531,7 @@ logstream::log( sgDebugClass c, sgDebugPriority p,
}
void logstream::hexdump(sgDebugClass c, sgDebugPriority p, const char* fileName, int line, const void *mem, unsigned int len, int columns)
void logstream::hexdump(sgDebugClass c, sgDebugPriority p, const char* fileName, int line, const void *mem, unsigned int len, unsigned int columns)
{
unsigned int i, j;
char temp[3000], temp1[3000];

View File

@@ -120,7 +120,7 @@ public:
/**
* output formatted hex dump of memory block
*/
void hexdump(sgDebugClass c, sgDebugPriority p, const char* fileName, int line, const void *mem, unsigned int len, int columns = 16);
void hexdump(sgDebugClass c, sgDebugPriority p, const char* fileName, int line, const void *mem, unsigned int len, unsigned int columns = 16);
/**