From 4c76f32ddac5145231609b1cb4f28028abed814b Mon Sep 17 00:00:00 2001
From: Chris Robinson <chris.kcat@gmail.com>
Date: Thu, 12 Sep 2019 03:14:01 -0700
Subject: Avoid implicit conversions with the examples and utils

---
 utils/openal-info.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

(limited to 'utils/openal-info.c')

diff --git a/utils/openal-info.c b/utils/openal-info.c
index 12dc6311..cc628b6e 100644
--- a/utils/openal-info.c
+++ b/utils/openal-info.c
@@ -124,7 +124,7 @@ static void printList(const char *list, char separator)
         next = strchr(list, separator);
         if(next)
         {
-            len = next-list;
+            len = (size_t)(next-list);
             do {
                 next++;
             } while(*next == separator);
-- 
cgit v1.2.3