summaryrefslogtreecommitdiff
path: root/src/VBox/Devices/Parallel/DevParallel.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/VBox/Devices/Parallel/DevParallel.cpp')
-rw-r--r--src/VBox/Devices/Parallel/DevParallel.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/VBox/Devices/Parallel/DevParallel.cpp b/src/VBox/Devices/Parallel/DevParallel.cpp
index fb1864400..10eed9e4d 100644
--- a/src/VBox/Devices/Parallel/DevParallel.cpp
+++ b/src/VBox/Devices/Parallel/DevParallel.cpp
@@ -1,4 +1,4 @@
-/* $Id: DevParallel.cpp $ */
+/* $Id: DevParallel.cpp 37466 2011-06-15 12:44:16Z vboxsync $ */
/** @file
* DevParallel - Parallel (Port) Device Emulation.
*
@@ -748,7 +748,7 @@ static DECLCALLBACK(int) parallelConstruct(PPDMDEVINS pDevIns,
* Initialize critical section and event semaphore.
* This must of course be done before attaching drivers or anything else which can call us back..
*/
- rc = PDMDevHlpCritSectInit(pDevIns, &pThis->CritSect, RT_SRC_POS, "Parallel#%d", iInstance);
+ rc = PDMDevHlpCritSectInit(pDevIns, &pThis->CritSect, RT_SRC_POS, "Parallel#%u", iInstance);
if (RT_FAILURE(rc))
return rc;