summaryrefslogtreecommitdiff
path: root/src/mesa/shader/slang/MachineIndependent/InfoSink.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mesa/shader/slang/MachineIndependent/InfoSink.cpp')
-rwxr-xr-xsrc/mesa/shader/slang/MachineIndependent/InfoSink.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/shader/slang/MachineIndependent/InfoSink.cpp b/src/mesa/shader/slang/MachineIndependent/InfoSink.cpp
index 6b1b59149f..9a1aaa26f9 100755
--- a/src/mesa/shader/slang/MachineIndependent/InfoSink.cpp
+++ b/src/mesa/shader/slang/MachineIndependent/InfoSink.cpp
@@ -1,5 +1,5 @@
//
-//Copyright (C) 2002-2004 3Dlabs Inc. Ltd.
+//Copyright (C) 2002-2005 3Dlabs Inc. Ltd.
//All rights reserved.
//
//Redistribution and use in source and binary forms, with or without
@@ -57,7 +57,7 @@ void TInfoSinkBase::append(const char *s)
void TInfoSinkBase::append(int count, char c)
{
if (outputStream & EString) {
- checkMem(1);
+ checkMem(count);
sink.append(count, c);
}