fix for new oct and hex escapes
[fw/sdcc] / src / SDCCval.c
index 8871a531f3c7df3840316397adfe8befce3bebca..a2c6f8e0a0616e6075b6ea691a9cf3c49af8ec03 100644 (file)
@@ -419,9 +419,8 @@ copyStr (char *dest, char *src)
              } else {
                if (value>255) {
                  werror(W_ESC_SEQ_OOR_FOR_CHAR);
-               } else {
-                 *dest++ = value;
                }
+               *dest++ = value;
                src--;
              }
              break;