diff options
author | Brian Paul <[email protected]> | 2006-03-14 15:08:52 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2006-03-14 15:08:52 +0000 |
commit | 15e74a64414ac88439f54f6cab2619c2a2655842 (patch) | |
tree | b66491ffc2cf37c74e1d431708e750550516b4e1 /src/glu/sgi/libnurbs/internals/knotvector.cc | |
parent | 0f618b7eb7bea2d97212baefc71fbc80c78e7222 (diff) |
replace dprintf() with _glu_dprintf() (bug 6244)
Diffstat (limited to 'src/glu/sgi/libnurbs/internals/knotvector.cc')
-rw-r--r-- | src/glu/sgi/libnurbs/internals/knotvector.cc | 6 |
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 50556f622dd..610046674cd 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 } |