While looking at
- the 'Wine Developers Guide' http://www.winehq.com/Docs/wine-devel/
on page: http://www.winehq.com/Docs/wine-devel/dbg-notes.shtml I notice the following.
try to avoid the style: FIXME(xxx, "(fd=%d, file=%s): stub\n", fd, name);
but use: FIXME(xxx, "(fd=%d, file=%s): stub\n", fd, name);
The reason is that if you want to grep for things, you would search for FIXME but in the first case there is no additional information available, where in the second one, there is (e.g. the word stub)
But both line are the same, I'm guessing the first was ment to look like:
FIXME(xxx, "(fd=%d, file=%s)\n", fd, name);
Regards Simeon.