From f9e7488309a33df24cf7d9b60de3c75c3f7e1fe6 Mon Sep 17 00:00:00 2001 From: Peter Veenstra Date: Wed, 10 Aug 2005 20:33:46 +0000 Subject: [PATCH] Fix a warning Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@2270 --- src/cpu/paging.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cpu/paging.cpp b/src/cpu/paging.cpp index 73fc2cc5..65f3d4ee 100644 --- a/src/cpu/paging.cpp +++ b/src/cpu/paging.cpp @@ -79,7 +79,7 @@ struct PF_Entry { }; #define PF_QUEUESIZE 16 -struct { +static struct { Bitu used; PF_Entry entries[PF_QUEUESIZE]; } pf_queue;