regedit: Add missing '\n' to an error message.

This commit is contained in:
Francois Gouget 2007-06-15 18:57:57 +02:00 committed by Alexandre Julliard
parent 5fb284721d
commit 8585fb3112
1 changed files with 1 additions and 1 deletions

View File

@ -62,7 +62,7 @@ static HKEY reg_class_keys[REG_CLASS_NUMBER] = {
#define CHECK_ENOUGH_MEMORY(p) \
if (!(p)) \
{ \
fprintf(stderr,"%s: file %s, line %d: Not enough memory", \
fprintf(stderr,"%s: file %s, line %d: Not enough memory\n", \
getAppName(), __FILE__, __LINE__); \
exit(NOT_ENOUGH_MEMORY); \
}