From 6b2b4167187fee09365271cca182866ecb029af3 Mon Sep 17 00:00:00 2001 From: Vsevolod Stakhov Date: Mon, 18 Mar 2024 14:56:16 +0000 Subject: [Rework] Remove some of the GLib types in lieu of standard ones This types have constant conflicts with the system ones especially on OSX. --- src/libcryptobox/chacha20/ref.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/libcryptobox/chacha20/ref.c') diff --git a/src/libcryptobox/chacha20/ref.c b/src/libcryptobox/chacha20/ref.c index ee646dbf3..b1b6c57fd 100644 --- a/src/libcryptobox/chacha20/ref.c +++ b/src/libcryptobox/chacha20/ref.c @@ -5,7 +5,7 @@ #if defined(HAVE_INT32) typedef uint32_t chacha_int32; #else -typedef guint32 chacha_int32; +typedef uint32_t chacha_int32; #endif /* interpret four 8 bit unsigned integers as a 32 bit unsigned integer in little endian */ -- cgit v1.2.3