From patchwork Tue May 9 11:53:09 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Zack Weinberg X-Patchwork-Id: 760049 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 3wMd6n4XRRz9ryQ for ; Tue, 9 May 2017 21:53:21 +1000 (AEST) Authentication-Results: ozlabs.org; dkim=pass (1024-bit key; secure) header.d=sourceware.org header.i=@sourceware.org header.b="VzOjTm7K"; dkim-atps=neutral DomainKey-Signature: a=rsa-sha1; c=nofws; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:from:to:subject:date:message-id:mime-version :content-transfer-encoding; q=dns; s=default; b=W8c2RBtqFlrc9VU1 W75bfkept8L4W08GYLHgRAN3A062r+6Nu4KT1ffiOl7CPHbnfrgmqZLvyNbpQu+S 5ZAWi7aB4wWdy8kf10U00KLhBKUPph93GE1a3oiL22KRWEgiYvXcWvltxuIiJ2Wz FV+wBw74v9/aRfzzyRoV5P+wHBo= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:from:to:subject:date:message-id:mime-version :content-transfer-encoding; s=default; bh=4v7fHbcFhouQMXEHIQHNxJ lyi0o=; b=VzOjTm7KGonSGeZVRpirhAKEvOExjzuBLE3ePKO/GZvF1+7RtLYl4V R9L+QfwvyaxVsHJbRCD6PryOMzwdawMhRYRgdaqz3pB1Fz4jW4RMc1E5cM4VgneG G1Ww/QoD7k/YxuJyHhgPu6n1NO3I7FkoDqWKMbTTO0JWU1LQKoIvs= Received: (qmail 43924 invoked by alias); 9 May 2017 11:53:10 -0000 Mailing-List: contact libc-alpha-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libc-alpha-owner@sourceware.org Delivered-To: mailing list libc-alpha@sourceware.org Received: (qmail 43883 invoked by uid 89); 9 May 2017 11:53:09 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-25.1 required=5.0 tests=AWL, BAYES_00, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, RP_MATCHES_RCVD, SPF_PASS autolearn=ham version=3.3.2 spammy=HContent-Transfer-Encoding:8bit X-HELO: mailbackend.panix.com From: Zack Weinberg To: libc-alpha@sourceware.org Subject: [PATCH] sunrpc/tst-xdrmem2.c: Include stdint.h. Date: Tue, 9 May 2017 07:53:09 -0400 Message-Id: <20170509115309.4123-1-zackw@panix.com> MIME-Version: 1.0 This test uses uintptr_t but was not including stdint.h. I'm not sure why this has only just now started being a problem with testsuite-ISOMAC, but whatever. Committed as obvious. --- ChangeLog | 4 ++++ sunrpc/tst-xdrmem2.c | 1 + 2 files changed, 5 insertions(+) diff --git a/ChangeLog b/ChangeLog index f3a0bddb3d..932dc5895d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2017-05-09 Zack Weinberg + + * sunrpc/tst-xdrmem2.c: Include stdint.h. + 2017-05-09 Florian Weimer [BZ #21474] diff --git a/sunrpc/tst-xdrmem2.c b/sunrpc/tst-xdrmem2.c index d879dd7181..fa28ad04f4 100644 --- a/sunrpc/tst-xdrmem2.c +++ b/sunrpc/tst-xdrmem2.c @@ -22,6 +22,7 @@ #include #include #include +#include static int do_test (void)