sz = vsnprintf(space, spaceSize(), fmt, vargs);
if (sz < 0) // output error in vsnprintf
throw TextException("output error in second-go vsnprintf",__FILE__,
- __LINE__);
+ __LINE__);
}
if (sz < 0) // output error in either vsnprintf
if (!snPrintfTerminatorChecked) {
char testbuf[16];
snPrintfTerminatorCounted = snprintf(testbuf, sizeof(testbuf),
- "%s", "1") == 2;
+ "%s", "1") == 2;
snPrintfTerminatorChecked = true;
}
if (snPrintfTerminatorCounted) {
char needleBegin = needle[0];
debugs(24, 7, "looking for " << needle << "starting at " << startPos <<
- " in id " << id);
+ " in id " << id);
while (begin < lastPossible) {
char *tmp;
debugs(24, 8, " begin=" << (void *) begin <<