Mercurial > trustbridge
changeset 145:27ebd96798c4
Fixed mox error ranges -- return codes can only use 8 bit.
author | Sascha Wilde <wilde@intevation.de> |
---|---|
date | Mon, 24 Mar 2014 16:25:32 +0100 |
parents | dc9970d7b9bf |
children | 306e4db11761 |
files | common/errorcodes.h |
diffstat | 1 files changed, 3 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- 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