summaryrefslogtreecommitdiff
path: root/src/glu/sgi/libnurbs/internals/knotvector.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/glu/sgi/libnurbs/internals/knotvector.cc')
-rw-r--r--src/glu/sgi/libnurbs/internals/knotvector.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/glu/sgi/libnurbs/internals/knotvector.cc b/src/glu/sgi/libnurbs/internals/knotvector.cc
index 50556f622d..610046674c 100644
--- a/src/glu/sgi/libnurbs/internals/knotvector.cc
+++ b/src/glu/sgi/libnurbs/internals/knotvector.cc
@@ -129,11 +129,11 @@ int Knotvector::validate( void )
void Knotvector::show( char *msg )
{
#ifndef NDEBUG
- dprintf( "%s\n", msg );
- dprintf( "order = %ld, count = %ld\n", order, knotcount );
+ _glu_dprintf( "%s\n", msg );
+ _glu_dprintf( "order = %ld, count = %ld\n", order, knotcount );
for( int i=0; i<knotcount; i++ )
- dprintf( "knot[%d] = %g\n", i, knotlist[i] );
+ _glu_dprintf( "knot[%d] = %g\n", i, knotlist[i] );
#endif
}