Module: wine Branch: master Commit: 4522fcf0b0024814e2fbf3dcc5b6134998234989 URL: https://source.winehq.org/git/wine.git/?a=commit;h=4522fcf0b0024814e2fbf3dcc...
Author: Francois Gouget fgouget@free.fr Date: Thu Aug 23 16:44:03 2018 +0200
winedump: Spelling fix in a comment.
Signed-off-by: Francois Gouget fgouget@free.fr Signed-off-by: Alexandre Julliard julliard@winehq.org
---
tools/winedump/tlb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tools/winedump/tlb.c b/tools/winedump/tlb.c index 701c527..bed5393 100644 --- a/tools/winedump/tlb.c +++ b/tools/winedump/tlb.c @@ -1165,7 +1165,7 @@ static const char *lookup_code(const BYTE *table, DWORD table_size, struct bitst
if (p + 1 < table + table_size && *(p + 1)) { - /* FIXME: Whats the meaning of *p? */ + /* FIXME: What is the meaning of *p? */ const BYTE *q = p + 1; while (q < table + table_size && *q) q++; return (q < table + table_size) ? (const char *)(p + 1) : NULL;