From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id A092C138A87 for ; Tue, 24 Feb 2015 01:26:16 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5DE95E08D9; Tue, 24 Feb 2015 01:26:15 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 9B236E08D6 for ; Tue, 24 Feb 2015 01:26:09 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B5799340957 for ; Tue, 24 Feb 2015 01:26:08 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B2924126B7 for ; Tue, 24 Feb 2015 01:26:04 +0000 (UTC) From: "Mike Frysinger" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Frysinger" Message-ID: <1424628349.029a18c5e4ab408c7eadc10693bcf7056b8ab171.vapier@gentoo> Subject: [gentoo-commits] proj/portage-utils:master commit in: / X-VCS-Repository: proj/portage-utils X-VCS-Files: qdepends.c X-VCS-Directories: / X-VCS-Committer: vapier X-VCS-Committer-Name: Mike Frysinger X-VCS-Revision: 029a18c5e4ab408c7eadc10693bcf7056b8ab171 X-VCS-Branch: master Date: Tue, 24 Feb 2015 01:26:04 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 5a8f848b-7730-4e3d-81ee-e36005c3e6c4 X-Archives-Hash: 21dcbb23e553e88b260e9f0d32d11e81 commit: 029a18c5e4ab408c7eadc10693bcf7056b8ab171 Author: Mike Frysinger gentoo org> AuthorDate: Sun Feb 22 18:05:49 2015 +0000 Commit: Mike Frysinger gentoo org> CommitDate: Sun Feb 22 18:05:49 2015 +0000 URL: http://sources.gentoo.org/gitweb/?p=proj/portage-utils.git;a=commit;h=029a18c5 qdepends: avoid warning when DEBUG is enabled --- qdepends.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/qdepends.c b/qdepends.c index 648d8e2..bcdeaa5 100644 --- a/qdepends.c +++ b/qdepends.c @@ -76,7 +76,8 @@ int qdepends_main_vdb(const char *depend_file, int argc, char **argv); int qdepends_vdb_deep(const char *depend_file, const char *query); #ifdef EBUG -_q_static void print_word(const char *ptr, size_t num) +void print_word(const char *ptr, size_t num); +void print_word(const char *ptr, size_t num) { while (num--) printf("%c", *ptr++);