diff options
Diffstat (limited to 'common/library.c')
-rw-r--r-- | common/library.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/common/library.c b/common/library.c index 48fd0c9..d0c246c 100644 --- a/common/library.c +++ b/common/library.c @@ -65,7 +65,7 @@ p11_mutex_t p11_library_mutex; pthread_once_t p11_library_once; #endif -static int print_messages = 1; +static bool print_messages = true; void p11_message_store (const char* msg, @@ -112,7 +112,7 @@ void p11_message_quiet (void) { p11_lock (); - print_messages = 0; + print_messages = false; p11_unlock (); } |