Module: wine Branch: master Commit: 66612e26266ccc4802fafb9a75e3252bb8f23b09 URL: http://source.winehq.org/git/wine.git/?a=commit;h=66612e26266ccc4802fafb9a75...
Author: André Hentschel nerv@dawncrow.de Date: Wed Apr 7 19:57:29 2010 +0200
ntdll: Use NULL for a pointer.
---
dlls/ntdll/error.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/ntdll/error.c b/dlls/ntdll/error.c index 86b7492..4c7d5a7 100644 --- a/dlls/ntdll/error.c +++ b/dlls/ntdll/error.c @@ -1447,5 +1447,5 @@ static const struct error_table error_table[] = { 0xc00a0001, 0xc00a0037, table_c00a0001 }, { 0xc0130001, 0xc0130017, table_c0130001 }, { 0xc0150001, 0xc015000f, table_c0150001 }, - { 0, 0, 0 } /* last entry */ + { 0, 0, NULL } /* last entry */ };