Skip to content

Commit

Permalink
perf: Removed debug statement
Browse files Browse the repository at this point in the history
  • Loading branch information
Gregungory committed Dec 13, 2024
1 parent 5e87442 commit 62304fb
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/rt/srcsamp.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#ifndef lint
static const char RCSid[] = "$Id: srcsamp.c,v 2.22 2024/11/15 20:47:42 greg Exp $";
static const char RCSid[] = "$Id: srcsamp.c,v 2.23 2024/12/13 00:50:55 greg Exp $";
#endif
/*
* Source sampling routines
Expand Down Expand Up @@ -50,8 +50,6 @@ sskip_rsi(uby8 *flags)
return(-2-i); /* found it! */
/* else tack on new entry */
if (ssf_count >= ssf_max) { /* need more space? */
fprintf(stderr, "DEBUG: skip flag array > %d entries (%.2f MBytes)\n",
ssf_count, SSKIPFLSIZ/1024./1024.*ssf_count);
ssf_max = ssf_count + (ssf_count>>2) + 64;
if (ssf_max <= ssf_count &&
(ssf_max = ssf_count+1024) <= ssf_count)
Expand Down

0 comments on commit 62304fb

Please sign in to comment.