Hacker News new | ask | show | jobs
by rawcal 845 days ago
The missing comma, it's two items and not three.
2 comments

Sometimes I write printf like this

   printf( "count=%i"
           "failed=%i"
           "busy=%i"
           "reqs=%i"
           "rsp=%i",
       count,
       failed,
       busy,
       reqs,
       rsp);
Oh ... ye ok. Impossible to spot once you decided it is actually one there.