From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:57173) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YLJU9-0005UF-HL for qemu-devel@nongnu.org; Tue, 10 Feb 2015 17:40:50 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YLJU4-0000Vs-Sj for qemu-devel@nongnu.org; Tue, 10 Feb 2015 17:40:49 -0500 Received: from resqmta-po-10v.sys.comcast.net ([96.114.154.169]:48778) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YLJU4-0000Tw-Os for qemu-devel@nongnu.org; Tue, 10 Feb 2015 17:40:44 -0500 From: Eric Blake Date: Tue, 10 Feb 2015 15:40:30 -0700 Message-Id: <1423608030-20368-1-git-send-email-eblake@redhat.com> Subject: [Qemu-devel] [PATCH] balloon: Fix typo List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: qemu-trivial@nongnu.org, Markus Armbruster , Luiz Capitulino Commit 422e0501 introduced a typo (unless removing an 'o' from balloon is how you deflate it?) Signed-off-by: Eric Blake --- I'm usually good at spotting typos when giving my R-b. Oh well, Dave is doing well to make sure my ego doesn't get too inflated :) balloon.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/balloon.c b/balloon.c index dea19a4..70c00f5 100644 --- a/balloon.c +++ b/balloon.c @@ -36,7 +36,7 @@ static QEMUBalloonEvent *balloon_event_fn; static QEMUBalloonStatus *balloon_stat_fn; static void *balloon_opaque; -static bool have_ballon(Error **errp) +static bool have_balloon(Error **errp) { if (kvm_enabled() && !kvm_has_sync_mmu()) { error_set(errp, ERROR_CLASS_KVM_MISSING_CAP, @@ -81,7 +81,7 @@ BalloonInfo *qmp_query_balloon(Error **errp) { BalloonInfo *info; - if (!have_ballon(errp)) { + if (!have_balloon(errp)) { return NULL; } @@ -92,7 +92,7 @@ BalloonInfo *qmp_query_balloon(Error **errp) void qmp_balloon(int64_t target, Error **errp) { - if (!have_ballon(errp)) { + if (!have_balloon(errp)) { return; } -- 2.1.0