From patchwork Sat Mar 31 18:32:14 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Frediano Ziglio X-Patchwork-Id: 149880 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 1D05AB6FCB for ; Sun, 1 Apr 2012 04:32:35 +1000 (EST) Received: from localhost ([::1]:34323 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SE36E-0003mW-ST for incoming@patchwork.ozlabs.org; Sat, 31 Mar 2012 14:32:30 -0400 Received: from eggs.gnu.org ([208.118.235.92]:53376) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SE367-0003mP-T5 for qemu-devel@nongnu.org; Sat, 31 Mar 2012 14:32:25 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SE366-0001mQ-B8 for qemu-devel@nongnu.org; Sat, 31 Mar 2012 14:32:23 -0400 Received: from mail-we0-f173.google.com ([74.125.82.173]:53795) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SE366-0001lz-2L; Sat, 31 Mar 2012 14:32:22 -0400 Received: by werp12 with SMTP id p12so1084333wer.4 for ; Sat, 31 Mar 2012 11:32:18 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id:x-mailer; bh=oYAWaZFCsNyDFLmThYDpZvCUDvOjzssiyp4EQn2fUuQ=; b=A5EXYeR6G7oHImsIRg0BYKRVzD+TNv08IesRkyDwzOBcqeesQyJqcxx7qg4oah7oEJ lrH63fkdBZ+FbHVFYYW7ml/8M9SAO6I4xXMhosZBwSD1GuOhOluy69ppB1ygHd5ldRJY ypklpBCWqGlnBWhrk1CTnBIelh/IK5qUFFutXMiPMoLNHOGFLBCzKz9b+onbZbtsyi+2 JkoKz8rizsbXaH7PMsLCJ78BdUY1kJlGD6gCW94zUhdKhm+LPSfNaLJABnnGxh+1qrcA NRhYoDkSyuZR6LGBogZewLTaJRafkKvwFdb/BTBQplaaBSbbQ9RCvbPo4ajnGthxIiPw vipg== Received: by 10.180.82.136 with SMTP id i8mr8293578wiy.19.1333218738577; Sat, 31 Mar 2012 11:32:18 -0700 (PDT) Received: from localhost.localdomain (cpc11-cmbg15-2-0-cust58.5-4.cable.virginmedia.com. [86.30.245.59]) by mx.google.com with ESMTPS id bx13sm18243448wib.10.2012.03.31.11.32.16 (version=SSLv3 cipher=OTHER); Sat, 31 Mar 2012 11:32:17 -0700 (PDT) From: Frediano Ziglio To: stefanha@gmail.com Date: Sat, 31 Mar 2012 19:32:14 +0100 Message-Id: <1333218734-23920-1-git-send-email-freddy77@gmail.com> X-Mailer: git-send-email 1.7.4.1 X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 74.125.82.173 Cc: qemu-trivial@nongnu.org, qemu-devel@nongnu.org, Frediano Ziglio Subject: [Qemu-devel] [PATCH] make qemu_event_handle static X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Signed-off-by: Frediano Ziglio --- main-loop.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/main-loop.c b/main-loop.c index db23de0..fc738d1 100644 --- a/main-loop.c +++ b/main-loop.c @@ -164,7 +164,7 @@ static int qemu_signal_init(void) #else /* _WIN32 */ -HANDLE qemu_event_handle = NULL; +static HANDLE qemu_event_handle = NULL; static void dummy_event_handler(void *opaque) {