$OpenBSD: patch-libclamav_ole2_extract_c,v 1.20 2020/09/15 09:08:36 sthen Exp $

allow for machine arch where char is unsigned by default (e.g. arm, powerpc)

Index: libclamav/ole2_extract.c
--- libclamav/ole2_extract.c.orig
+++ libclamav/ole2_extract.c
@@ -230,7 +230,7 @@ int ole2_list_delete(ole2_list_t *list)
 static unsigned char magic_id[] = {0xd0, 0xcf, 0x11, 0xe0, 0xa1, 0xb1, 0x1a, 0xe1};
 
 char *
-cli_ole2_get_property_name2(const char *name, int size)
+cli_ole2_get_property_name2(signed const char *name, int size)
 {
     int i, j;
     char *newname;
