From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1QdsDt-000782-97 for garchives@archives.gentoo.org; Mon, 04 Jul 2011 23:06:37 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2D40721C116; Mon, 4 Jul 2011 23:06:30 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id ED49E21C10C for ; Mon, 4 Jul 2011 23:06:29 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 7A85A1B4007 for ; Mon, 4 Jul 2011 23:06:29 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id 6E03580042 for ; Mon, 4 Jul 2011 23:06:28 +0000 (UTC) From: "Mike Frysinger" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Frysinger" Message-ID: Subject: [gentoo-commits] proj/sandbox:master commit in: tests/ X-VCS-Repository: proj/sandbox X-VCS-Files: tests/open64-0.c X-VCS-Directories: tests/ X-VCS-Committer: vapier X-VCS-Committer-Name: Mike Frysinger X-VCS-Revision: c143ca8009fa46b737dbaa1ba7e749595330f8b1 Date: Mon, 4 Jul 2011 23:06:28 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: X-Archives-Hash: 7e73668ef5024521fe7b522a27587520 commit: c143ca8009fa46b737dbaa1ba7e749595330f8b1 Author: Mike Frysinger gentoo org> AuthorDate: Mon Jul 4 21:08:47 2011 +0000 Commit: Mike Frysinger gentoo org> CommitDate: Mon Jul 4 21:08:47 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/sandbox.git;a= =3Dcommit;h=3Dc143ca80 tests: fix flags parsing in open64 The open test got this fix a while ago, but open64 was missed. Signed-off-by: Mike Frysinger gentoo.org> --- tests/open64-0.c | 3 +-- 1 files changed, 1 insertions(+), 2 deletions(-) diff --git a/tests/open64-0.c b/tests/open64-0.c index 425a4e2..76d2686 100644 --- a/tests/open64-0.c +++ b/tests/open64-0.c @@ -11,7 +11,6 @@ const char *file =3D f_get_file(s); \ \ s =3D argv[i++]; \ - int flags; \ - sscanf(s, "%i", &flags); + int flags =3D f_get_flags(s); =20 #include "test-skel-0.c"