summaryrefslogtreecommitdiff
path: root/multimedia/ming/patches/patch-ae
blob: 5424c8a5a04eaaeb64ce9f1a80c209c73569fc09 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
$NetBSD: patch-ae,v 1.1 2008/04/03 08:42:25 joerg Exp $

--- src/actioncompiler/compile.c.orig	2008-04-03 10:33:17.000000000 +0200
+++ src/actioncompiler/compile.c
@@ -536,7 +536,7 @@ void lower(char *s)
 {
 	while(*s)
 	{
-		*s = tolower(*s);
+		*s = tolower((unsigned char)*s);
 		++s;
 	}
 }