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: 20321 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)