From patchwork Mon Sep 28 18:34:00 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Doug Evans X-Patchwork-Id: 8868 Received: (qmail 74447 invoked by alias); 28 Sep 2015 18:34:04 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Delivered-To: mailing list gdb-patches@sourceware.org Received: (qmail 73124 invoked by uid 89); 28 Sep 2015 18:34:03 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.6 required=5.0 tests=AWL, BAYES_00, RCVD_IN_DNSWL_LOW, SPF_PASS, T_RP_MATCHES_RCVD autolearn=ham version=3.3.2 X-HELO: mail-oi0-f74.google.com Received: from mail-oi0-f74.google.com (HELO mail-oi0-f74.google.com) (209.85.218.74) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-GCM-SHA256 encrypted) ESMTPS; Mon, 28 Sep 2015 18:34:02 +0000 Received: by oiww128 with SMTP id w128so13210108oiw.0 for ; Mon, 28 Sep 2015 11:34:00 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:message-id:date:subject:from:to :content-type; bh=vfdK9uL4Byj3XEIHeGaR2CDGCVJ74pMcBjZlzYIRN0I=; b=JYnI30nMI2Ce9RagymwsOzR3qhSjY+V70sQemzepErpjzk48Xyca+GBrIRBYze+5VE wrY0rG5ykY9/zYXNkUERLJQmfC6HyyuDxFMCpfAxwz/u1aN5AiLtUi/PRvtJCbgO6k6c 4PurHfSmNkqQo2znc7dDQmmBLlXKtsuZBq3HzXHZG6rIxqJ2DoDipaV5O46RYrv7L3qf I+qgqVThY7Jxyq0ITL2TnC25FrG8g1dWM9aHK71kITKIp3IvzTTzLJpMxRNuxx+clxNx Ke3Z6zM13Gfptw5QfzStjGq1OIVYMH/SUY93aJ2erBaiyHz0CUQIbRG1Q7VrkpkdbzVx b87A== X-Gm-Message-State: ALoCoQmv6bbROWkuxc2RX9vMZC0gJXQ3WJNA5+EUa1FBXUeJX3Wpl8sd89rSkBn2KQByne+ozcUscmY5JHoRsWK6nQUGIatd6nIvJbNCn+KJcIbwPvNiYEED8xRLpKO1TUFYMATeba/ELzZxq4WTbB4l9hCZlWzG2yNhU7sfQ7FHw+oiLxaBn5s= MIME-Version: 1.0 X-Received: by 10.50.43.233 with SMTP id z9mr17203875igl.9.1443465240263; Mon, 28 Sep 2015 11:34:00 -0700 (PDT) Message-ID: <089e01227748e4b58c0520d2f00f@google.com> Date: Mon, 28 Sep 2015 18:34:00 +0000 Subject: [OB PATCH] common/filestuff.c (make_cleanup_close): Update comment. From: Doug Evans To: gdb-patches@sourceware.org X-IsSubscribed: yes Hi. Committed as obvious. 2015-09-28 Doug Evans * common/filestuff.c (make_cleanup_close): Update comment. diff --git a/gdb/common/filestuff.c b/gdb/common/filestuff.c index 798a411..a5b94cb 100644 --- a/gdb/common/filestuff.c +++ b/gdb/common/filestuff.c @@ -415,7 +415,7 @@ do_close_cleanup (void *arg) close (*fd); } -/* See cleanup-utils.h. */ +/* See filestuff.h. */ struct cleanup * make_cleanup_close (int fd)