- Major change: Errors are now positive numbers instead of negative.

Reason: You cannot OR negative values correctly
This commit is contained in:
Paul Bakker 2009-07-19 20:28:35 +00:00
parent 1e27bb24bc
commit b5bf176f4c
7 changed files with 90 additions and 90 deletions

View file

@ -22,8 +22,8 @@
#ifndef POLARSSL_BASE64_H
#define POLARSSL_BASE64_H
#define POLARSSL_ERR_BASE64_BUFFER_TOO_SMALL -0x0010
#define POLARSSL_ERR_BASE64_INVALID_CHARACTER -0x0012
#define POLARSSL_ERR_BASE64_BUFFER_TOO_SMALL 0x0010
#define POLARSSL_ERR_BASE64_INVALID_CHARACTER 0x0012
#ifdef __cplusplus
extern "C" {