diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-02-02 12:39:26 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-02-02 12:42:21 +0100 |
commit | 05642b446c39c1551d2d703be18158c7ae0f0c36 (patch) | |
tree | e15d0ab37da0f32b2be878a7a1d8bd81a3610f5d /rsc | |
parent | 3c51c3db186e243a7e96103242285b2854725a18 (diff) |
-Werror,-Wconstant-conversion (from 255 to -1)
Change-Id: I9cce09bf729398a475d9d07fdfa002f325611546
Diffstat (limited to 'rsc')
-rw-r--r-- | rsc/source/rscpp/cpp4.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rsc/source/rscpp/cpp4.c b/rsc/source/rscpp/cpp4.c index 5d1cf7dc75a3..98ec8a348f7c 100644 --- a/rsc/source/rscpp/cpp4.c +++ b/rsc/source/rscpp/cpp4.c @@ -277,7 +277,7 @@ void stparmscan(int delim) { #ifdef SOLAR *wp++ = DEL; - *wp++ = MAC_PARM + PAR_MAC; /* Stuff a magic marker */ + *wp++ = (char)(MAC_PARM + PAR_MAC); /* Stuff a magic marker */ *wp++ = (char)(i + MAC_PARM); /* Make a formal marker */ *wp = wp[-4]; /* Add on closing quote */ workp = wp + 1; /* Reset string end */ |