# HG changeset patch # User Sascha Wilde # Date 1395674732 -3600 # Node ID 27ebd96798c4d490e679fcb7737513449cab6f88 # Parent dc9970d7b9bf51bd2dcfe422379493f6a051633b Fixed mox error ranges -- return codes can only use 8 bit. diff -r dc9970d7b9bf -r 27ebd96798c4 common/errorcodes.h --- a/common/errorcodes.h Mon Mar 24 16:10:26 2014 +0100 +++ b/common/errorcodes.h Mon Mar 24 16:25:32 2014 +0100 @@ -20,12 +20,12 @@ /*********************************************************************** * mozilla specific errors and warnings - * errors range from 0x4D01 to 0x4DFF - * warnings from 0x4F01 to 0x4F80 + * errors range from 0x0081 to 0x08F + * warnings from 0x0091 to 0x0098 * Warnings might be ORed together ... */ /* Warning: Failed to read profile.ini */ -#define WARN_MOZ_FAILED_TO_OPEN_INI 0x4F01 +#define WARN_MOZ_FAILED_TO_OPEN_INI 0x0091 #endif