Return-Path: Delivered-To: apmail-incubator-stdcxx-commits-archive@www.apache.org Received: (qmail 26751 invoked from network); 16 Aug 2006 16:10:13 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 16 Aug 2006 16:10:13 -0000 Received: (qmail 771 invoked by uid 500); 16 Aug 2006 16:10:12 -0000 Delivered-To: apmail-incubator-stdcxx-commits-archive@incubator.apache.org Received: (qmail 761 invoked by uid 500); 16 Aug 2006 16:10:12 -0000 Mailing-List: contact stdcxx-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: stdcxx-dev@incubator.apache.org Delivered-To: mailing list stdcxx-commits@incubator.apache.org Received: (qmail 745 invoked by uid 99); 16 Aug 2006 16:10:11 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 16 Aug 2006 09:10:11 -0700 X-ASF-Spam-Status: No, hits=-9.4 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [140.211.166.113] (HELO eris.apache.org) (140.211.166.113) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 16 Aug 2006 09:10:10 -0700 Received: by eris.apache.org (Postfix, from userid 65534) id 9D83A1A981A; Wed, 16 Aug 2006 09:09:50 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r431937 - /incubator/stdcxx/trunk/util/scanner.cpp Date: Wed, 16 Aug 2006 16:09:50 -0000 To: stdcxx-commits@incubator.apache.org From: sebor@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20060816160950.9D83A1A981A@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: sebor Date: Wed Aug 16 09:09:49 2006 New Revision: 431937 URL: http://svn.apache.org/viewvc?rev=431937&view=rev Log: 2006-08-16 Andrew Black * scanner.cpp (Scanner::convert_escape): Corrected order of arguments to an issue_diag call, added missing newline. Modified: incubator/stdcxx/trunk/util/scanner.cpp Modified: incubator/stdcxx/trunk/util/scanner.cpp URL: http://svn.apache.org/viewvc/incubator/stdcxx/trunk/util/scanner.cpp?rev=431937&r1=431936&r2=431937&view=diff ============================================================================== --- incubator/stdcxx/trunk/util/scanner.cpp (original) +++ incubator/stdcxx/trunk/util/scanner.cpp Wed Aug 16 09:09:49 2006 @@ -2,20 +2,27 @@ * * scanner.cpp * - * $Id: //stdlib/dev/source/stdlib/util/scanner.cpp#59 $ + * $Id$ * *************************************************************************** * - * Copyright (c) 1994-2005 Quovadx, Inc., acting through its Rogue Wave - * Software division. Licensed under the Apache License, Version 2.0 (the - * "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at - * http://www.apache.org/licenses/LICENSE-2.0. Unless required by - * applicable law or agreed to in writing, software distributed under - * the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR - * CONDITIONS OF ANY KIND, either express or implied. See the License - * for the specific language governing permissions and limitations under - * the License. + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed + * with this work for additional information regarding copyright + * ownership. The ASF licenses this file to you under the Apache + * License, Version 2.0 (the "License"); you may not use this file + * except in compliance with the License. You may obtain a copy of + * the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + * implied. See the License for the specific language governing + * permissions and limitations under the License. + * + * Copyright 2001-2006 Rogue Wave Software. * **************************************************************************/ @@ -734,8 +741,8 @@ if (val < 0 || val > long (UCHAR_MAX)) issue_diag (E_INVAL, true, 0, - "%s value in the range [0, %lu) expected: %s", - basename, esc, long (UCHAR_MAX)); + "%s value in the range [0, %lu) expected: %s\n", + basename, long (UCHAR_MAX), esc); typedef unsigned char UChar;