diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2004-10-13 07:26:23 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2004-10-13 07:26:23 +0000 |
commit | d33b03e8a28410b377bd506e1de079c97bc7bb4b (patch) | |
tree | 89446782e4702b0c2afd0e35d5a7d148430a6bc7 /rsc | |
parent | da9ad0c242b1a499a3531f264b7276fea85b58bb (diff) |
INTEGRATION: CWS vcl27 (1.2.38); FILE MERGED
2004/09/02 16:30:55 pl 1.2.38.1: #i33565# recognize and ignore UTF-8 BOM
Diffstat (limited to 'rsc')
-rw-r--r-- | rsc/source/rscpp/cpp5.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/rsc/source/rscpp/cpp5.c b/rsc/source/rscpp/cpp5.c index d22ce8565ba5..a203d12f3da4 100644 --- a/rsc/source/rscpp/cpp5.c +++ b/rsc/source/rscpp/cpp5.c @@ -2,9 +2,9 @@ * * $RCSfile: cpp5.c,v $ * - * $Revision: 1.2 $ + * $Revision: 1.3 $ * - * last change: $Author: hr $ $Date: 2004-02-04 11:59:30 $ + * last change: $Author: hr $ $Date: 2004-10-13 08:26:23 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -394,7 +394,7 @@ again: ; opp--; /* Unstack : */ if (opp->op != OP_QUE) { /* Matches ? on stack? */ cerror("Misplaced '?' or ':', previous operator is %s", - opname[opp->op]); + opname[(int)opp->op]); return (1); } /* |