diff options
-rw-r--r-- | src/gpgrt-int.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gpgrt-int.h b/src/gpgrt-int.h index a13f5fb..718b62c 100644 --- a/src/gpgrt-int.h +++ b/src/gpgrt-int.h @@ -504,9 +504,9 @@ struct _gpgrt_b64state unsigned int crc; gpg_err_code_t lasterr; unsigned int flags; - int stop_seen:1; - int invalid_encoding:1; - int using_decoder:1; + unsigned int stop_seen:1; + unsigned int invalid_encoding:1; + unsigned int using_decoder:1; }; gpgrt_b64state_t _gpgrt_b64enc_start (estream_t stream, const char *title); |