summaryrefslogtreecommitdiff
path: root/lang/rexx-regutil/files/patch-regini.c
blob: ace11aedcf6a59c967b58fc647ce363432ba0a76 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
--- regini.c.orig	2004-07-19 00:09:52 UTC
+++ regini.c
@@ -1002,7 +1002,7 @@ rxfunc(sysgeterrortext)
       result->strlength = 0;
    }
 #else
-   if (rcs = strerror(rc)) {
+   if ((rcs = strerror(rc))) {
       result->strlength = strlen(rcs);
       memcpy(result->strptr, rcs, result->strlength);
    }