From: Jan P. <pa...@pi...> - 2009-10-06 06:44:00
|
Hi Dan, >> + snprintf (val, maxlen, "%i:%#02i:%#02i", vs, entry->data > What is the purpose of the '#' character in the printf format specifiers > above? My documentation shows that it's a no-op (at best) or undefined > (at worst) for the %i formatter. "#x" instructs to fill to the specified width using the x character. But maybe it works only for %s. for %i it is not needed. Thanks for pointing it out. Fixed. -- Jan |