Fix signed/unsigned comparison
authorThomas Jarosch <thomas.jarosch@intra2net.com>
Mon, 17 Oct 2011 08:50:11 +0000 (10:50 +0200)
committerThomas Jarosch <thomas.jarosch@intra2net.com>
Mon, 17 Oct 2011 08:50:11 +0000 (10:50 +0200)
src/tracefunc.cpp

index 54a924c..cbdadea 100644 (file)
@@ -78,7 +78,7 @@ static PerThreadContainer *TLS_get_container()
  * @brief ensures indent level string to exist up to the desired level.
  * @param level the desired indent level.
  */
-static void ensure_indent_level(PerThreadContainer *per_thread, int level)
+static void ensure_indent_level(PerThreadContainer *per_thread, unsigned int level)
 {
     // First initialization?
     if (per_thread->indents.empty())