summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/util/levcomp.lpp
diff options
context:
space:
mode:
authornlanza <nlanza@c06c8d41-db1a-0410-9941-cceddc491573>2006-12-11 00:20:22 +0000
committernlanza <nlanza@c06c8d41-db1a-0410-9941-cceddc491573>2006-12-11 00:20:22 +0000
commit20594634a44b5ee1ebe9ae3f7cdb34489b21d273 (patch)
treea8fde6ad17d889e1164ee839600bbd5c82e6b887 /crawl-ref/source/util/levcomp.lpp
parent2b7d6cadecf9c3d272cc1097824ffc7d7e770aab (diff)
downloadcrawl-ref-20594634a44b5ee1ebe9ae3f7cdb34489b21d273.tar.gz
crawl-ref-20594634a44b5ee1ebe9ae3f7cdb34489b21d273.zip
Compiler warning nitpicking; 'int' -> 'unsigned int'
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@610 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/util/levcomp.lpp')
-rw-r--r--crawl-ref/source/util/levcomp.lpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/util/levcomp.lpp b/crawl-ref/source/util/levcomp.lpp
index 7aefff7bb2..ac9105077a 100644
--- a/crawl-ref/source/util/levcomp.lpp
+++ b/crawl-ref/source/util/levcomp.lpp
@@ -14,7 +14,7 @@ static bool alloced = false;
std::queue<const char *> free_queue;
-static void flush_free_queue(int max_allowed)
+static void flush_free_queue(unsigned int max_allowed)
{
while (free_queue.size() > max_allowed)
{