From patchwork Sat Sep 3 00:02:41 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Roland McGrath X-Patchwork-Id: 665363 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 3sQx5n0MH8z9sBR for ; Sat, 3 Sep 2016 10:03:08 +1000 (AEST) Authentication-Results: ozlabs.org; dkim=pass (1024-bit key; secure) header.d=sourceware.org header.i=@sourceware.org header.b=nVNeVhm8; 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:mime-version:content-type :content-transfer-encoding:from:to:subject:message-id:date; q= dns; s=default; b=MGALQ+MPithsUuEmdpqflnCMKCfmUbKQQhnYzRmmgWzqr+ ikCfE4jv0xFTeCNsnSZAaxB29WhYFJeqEZmUq1bNzVGcaFLZjyZ+qwYw0qUjEoDG hW37L3gWb476z5LtaQirI9X6Xd3insHXpkViVBD6d45sZVjJ9QsVyXnN5YEYs= 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:mime-version:content-type :content-transfer-encoding:from:to:subject:message-id:date; s= default; bh=cOXpYTyBGbELn0/zVhYT06BWI6Y=; b=nVNeVhm8Nrd4lv99SGPc 73ypwHnuSlVX9h+cUJwXA+16TXtQcry+54OIqCLuQ7M8y4kU4+PjD93EZy7oug/I 4TBoQ8cq13zNihJvdBaij2RSzyD2R15jVj/9o61KWK6bEPTnwUWg4Y2Xkwl0qWOO t+Gnlh9if9c5nIlz3+e3Zm0= Received: (qmail 35682 invoked by alias); 3 Sep 2016 00:02:53 -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 35594 invoked by uid 89); 3 Sep 2016 00:02:52 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-0.9 required=5.0 tests=BAYES_00, KAM_LAZY_DOMAIN_SECURITY autolearn=no version=3.3.2 spammy= X-HELO: topped-with-meat.com MIME-Version: 1.0 From: Roland McGrath To: "GNU C. Library" Subject: [COMMITTED PATCH] NaCl: Fix compile error in clock function. Message-Id: <20160903000241.325C12C3A08@topped-with-meat.com> Date: Fri, 2 Sep 2016 17:02:41 -0700 (PDT) X-CMAE-Score: 0 X-CMAE-Analysis: v=2.1 cv=Tvt12lnh c=1 sm=1 tr=0 a=WkljmVdYkabdwxfqvArNOQ==:117 a=L9H7d07YOLsA:10 a=9cW_t1CCXrUA:10 a=s5jvgZ67dGcA:10 a=kj9zAlcOel0A:10 a=hOe2yjtxAAAA:8 a=M7dpwY2xZkE-dfV1LVsA:9 a=CjuIK1q_8ugA:10 a=gbQ2aRBClj0A:10 a=5n8bj1CBd8BBKhhnFH18:22 2016-09-02 Roland McGrath * sysdeps/nacl/clock.c (clock): nacl_abi_clock_t -> nacl_irt_clock_t diff --git a/sysdeps/nacl/clock.c b/sysdeps/nacl/clock.c index 664ad65..b6fbcfd 100644 --- a/sysdeps/nacl/clock.c +++ b/sysdeps/nacl/clock.c @@ -24,6 +24,6 @@ clock_t clock (void) { - nacl_abi_clock_t result; + nacl_irt_clock_t result; return NACL_CALL (__nacl_irt_basic.clock (&result), result); }