From patchwork Fri Apr 4 22:17:55 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tobias Burnus X-Patchwork-Id: 337112 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id AFB7C140099 for ; Sat, 5 Apr 2014 09:18:13 +1100 (EST) DomainKey-Signature: a=rsa-sha1; c=nofws; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender :message-id:date:from:mime-version:to:subject:content-type; q= dns; s=default; b=GMoHLCo6dInc5AX9qrCLaVVlD3II4t0g1YDNEW2VunFRpK xViJ1WMgbTx5aUqAp4KxRey4R+7tNX0Y6jbvOMvaTB+WLLnXBM+IaM9mPy2e9uCW cSncBHLd2eabIC9423IlHeyvAseVXJv4ZFTv1yI0XSLg2jwr6+/VxRpzf4VCs= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender :message-id:date:from:mime-version:to:subject:content-type; s= default; bh=OFcT96Ci0WRCKEYGZk6xJj77ye4=; b=U4P8Axr1zM/klPWKDYbi 0NI2bSxaFtm7uLwCXVU6MLxgRVQv8OKscL/ZJIwJ2jEyDMkQMIMY6Y2Ya/hlCLoM 9flmpBRIJhuoXasr4uRuScaj7YFk6Kg4ItY+wC9652XxCYmjFubaQ0dYt7O1dB4H mz35iNi8lZ+rRWaUmr89CIs= Received: (qmail 10410 invoked by alias); 4 Apr 2014 22:18:02 -0000 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Delivered-To: mailing list gcc-patches@gcc.gnu.org Received: (qmail 10368 invoked by uid 89); 4 Apr 2014 22:18:01 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.0 required=5.0 tests=AWL, BAYES_00 autolearn=ham version=3.3.2 X-Spam-User: qpsmtpd, 2 recipients X-HELO: mx01.qsc.de Received: from mx01.qsc.de (HELO mx01.qsc.de) (213.148.129.14) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-SHA encrypted) ESMTPS; Fri, 04 Apr 2014 22:17:58 +0000 Received: from tux.net-b.de (port-92-194-244-210.dynamic.qsc.de [92.194.244.210]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx01.qsc.de (Postfix) with ESMTPSA id D2FEE3CCFD; Sat, 5 Apr 2014 00:17:55 +0200 (CEST) Message-ID: <533F2F93.7030004@net-b.de> Date: Sat, 05 Apr 2014 00:17:55 +0200 From: Tobias Burnus User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:24.0) Gecko/20100101 Thunderbird/24.3.0 MIME-Version: 1.0 To: gcc-patches , gfortran Subject: [Patch, Fortran, committed] Fixed a typo Committed as obvious, Rev. 209133 Tobias Index: ChangeLog =================================================================== --- ChangeLog (Revision 209132) +++ ChangeLog (Arbeitskopie) @@ -1,3 +1,7 @@ +2014-04-04 Tobias Burnus + + * check.c (gfc_check_cmplx): Fix typo. + 2014-03-28 Mikael Morin Tobias Burnus Index: check.c =================================================================== --- check.c (Revision 209132) +++ check.c (Arbeitskopie) @@ -1278,12 +1278,12 @@ gfc_check_cmplx (gfc_expr *x, gfc_expr *y, gfc_exp if (!kind && gfc_option.gfc_warn_conversion && x->ts.type == BT_REAL && x->ts.kind > gfc_default_real_kind) gfc_warning_now ("Conversion from %s to default-kind COMPLEX(%d) at %L " - "might loose precision, consider using the KIND argument", + "might lose precision, consider using the KIND argument", gfc_typename (&x->ts), gfc_default_real_kind, &x->where); else if (y && !kind && gfc_option.gfc_warn_conversion && y->ts.type == BT_REAL && y->ts.kind > gfc_default_real_kind) gfc_warning_now ("Conversion from %s to default-kind COMPLEX(%d) at %L " - "might loose precision, consider using the KIND argument", + "might lose precision, consider using the KIND argument", gfc_typename (&y->ts), gfc_default_real_kind, &y->where); return true;