Return-Path: X-Original-To: notmuch@notmuchmail.org Delivered-To: notmuch@notmuchmail.org Received: from localhost (localhost [127.0.0.1]) by olra.theworths.org (Postfix) with ESMTP id 340D1429E34 for ; Fri, 13 Jan 2012 19:08:31 -0800 (PST) X-Virus-Scanned: Debian amavisd-new at olra.theworths.org X-Spam-Flag: NO X-Spam-Score: -0.7 X-Spam-Level: X-Spam-Status: No, score=-0.7 tagged_above=-999 required=5 tests=[RCVD_IN_DNSWL_LOW=-0.7] autolearn=disabled Received: from olra.theworths.org ([127.0.0.1]) by localhost (olra.theworths.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id g5dFFCcfLtvy for ; Fri, 13 Jan 2012 19:08:30 -0800 (PST) Received: from dmz-mailsec-scanner-5.mit.edu (DMZ-MAILSEC-SCANNER-5.MIT.EDU [18.7.68.34]) by olra.theworths.org (Postfix) with ESMTP id B02AD431FB6 for ; Fri, 13 Jan 2012 19:08:30 -0800 (PST) X-AuditID: 12074422-b7fd66d0000008f9-0e-4f10f1ad11a6 Received: from mailhub-auth-4.mit.edu ( [18.7.62.39]) by dmz-mailsec-scanner-5.mit.edu (Symantec Messaging Gateway) with SMTP id 4B.0C.02297.DA1F01F4; Fri, 13 Jan 2012 22:08:29 -0500 (EST) Received: from outgoing.mit.edu (OUTGOING-AUTH.MIT.EDU [18.7.22.103]) by mailhub-auth-4.mit.edu (8.13.8/8.9.2) with ESMTP id q0E38Stx015682; Fri, 13 Jan 2012 22:08:28 -0500 Received: from drake.mit.edu (209-6-116-242.c3-0.arl-ubr1.sbo-arl.ma.cable.rcn.com [209.6.116.242]) (authenticated bits=0) (User authenticated as amdragon@ATHENA.MIT.EDU) by outgoing.mit.edu (8.13.6/8.12.4) with ESMTP id q0E38QBP029284 (version=TLSv1/SSLv3 cipher=AES256-SHA bits=256 verify=NOT); Fri, 13 Jan 2012 22:08:28 -0500 (EST) Received: from amthrax by drake.mit.edu with local (Exim 4.77) (envelope-from ) id 1Rltyk-0004lr-9C; Fri, 13 Jan 2012 22:08:26 -0500 From: Austin Clements To: notmuch@notmuchmail.org Subject: [PATCH] Fix build warning: "/*" within comment Date: Fri, 13 Jan 2012 22:08:23 -0500 Message-Id: <1326510503-18300-1-git-send-email-amdragon@mit.edu> X-Mailer: git-send-email 1.7.7.3 X-Brightmail-Tracker: H4sIAAAAAAAAA+NgFprFIsWRmVeSWpSXmKPExsUixG6nrrv2o4C/waXTYhbXb85kdmD0eLbq FnMAYxSXTUpqTmZZapG+XQJXxoorc5gKFrFWPFx9mr2BcSJLFyMnh4SAicSZk/PYIGwxiQv3 1gPZXBxCAvsYJZ7t2w3lbGCUmP6tjxnCuc8kcWFmAzNIi5DAfKCyT/4gNpuAhsS2/csZQWwR AWmJnXdns3YxcnAwC4hIvJvJBBIWFjCXuHFjIVgJi4CqxIyeJrA4r4CDxMUNH1ghrlCQOLf6 HPsERt4FjAyrGGVTcqt0cxMzc4pTk3WLkxPz8lKLdE31cjNL9FJTSjcxgoPARWkH48+DSocY BTgYlXh4C3ME/IVYE8uKK3MPMUpyMCmJ8vq8BQrxJeWnVGYkFmfEF5XmpBYfYpTgYFYS4U3d C5TjTUmsrEotyodJSXOwKInzqmu98xMSSE8sSc1OTS1ILYLJynBwKEnwugCDXUiwKDU9tSIt M6cEIc3EwQkynAdouA1IDW9xQWJucWY6RP4Uo6KUOC8rSEIAJJFRmgfXC4vSV4ziQK8I80qC VPEAIxyu+xXQYCagwWUpfCCDSxIRUlINjC1hF9qPf1wYy6/fWiXmK/FyccJjwRLeZMvWVf2X V6hEzt9j8F07q6Tg+e6jD7296u/dUOmMr428FxO39OQuZr5l5l4V74o9FwV9fs+dL2kpNefb p/AHXn/YHHL85/Tt68vfox+V+4P5U2Ae4+zHmo8XicnflGV6YPS298yBlHAT8ZCPbdknlViK MxINtZiLihMBMPd50a0CAAA= X-BeenThere: notmuch@notmuchmail.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: "Use and development of the notmuch mail system." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Jan 2012 03:08:31 -0000 --- notmuch-show.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/notmuch-show.c b/notmuch-show.c index 87a1c90..d14dac9 100644 --- a/notmuch-show.c +++ b/notmuch-show.c @@ -677,7 +677,7 @@ format_part_content_json (GMimeObject *part) if (g_mime_content_type_is_type (content_type, "text", "*")) { - /* For non-HTML text/* parts, we include the content in the + /* For non-HTML text parts, we include the content in the * JSON. Since JSON must be Unicode, we handle charset * decoding here and do not report a charset to the caller. * For text/html parts, we do not include the content. If a -- 1.7.7.3