From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753185AbbGIFHD (ORCPT ); Thu, 9 Jul 2015 01:07:03 -0400 Received: from smtp02.smtpout.orange.fr ([80.12.242.124]:35866 "EHLO smtp.smtpout.orange.fr" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751132AbbGIFGy (ORCPT ); Thu, 9 Jul 2015 01:06:54 -0400 X-ME-Helo: localhost.localdomain X-ME-Auth: Y2hyaXN0b3BoZS5qYWlsbGV0QHdhbmFkb28uZnI= X-ME-Date: Thu, 09 Jul 2015 07:06:53 +0200 X-ME-IP: 92.140.216.36 From: Christophe JAILLET To: jdike@addtoit.com, richard@nod.at Cc: user-mode-linux-devel@lists.sourceforge.net, user-mode-linux-user@lists.sourceforge.net, linux-kernel@vger.kernel.org, kernel-janitors@vger.kernel.org, Christophe JAILLET Subject: [PATCH 1/2] um: umid: Use tab instead of spaces Date: Thu, 9 Jul 2015 07:06:03 +0200 Message-Id: <1436418364-5201-1-git-send-email-christophe.jaillet@wanadoo.fr> X-Mailer: git-send-email 2.1.4 In-Reply-To: <1436382947-13181-1-git-send-email-christophe.jaillet@wanadoo.fr> References: <1436382947-13181-1-git-send-email-christophe.jaillet@wanadoo.fr> X-Antivirus: avast! (VPS 150708-1, 08/07/2015), Outbound message X-Antivirus-Status: Clean Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Turn some spaces into a tab to be consistent with the rest of the code. Signed-off-by: Christophe JAILLET --- arch/um/os-Linux/umid.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/um/os-Linux/umid.c b/arch/um/os-Linux/umid.c index c1dc892..b514ead 100644 --- a/arch/um/os-Linux/umid.c +++ b/arch/um/os-Linux/umid.c @@ -56,7 +56,7 @@ static int __init make_uml_dir(void) strcpy(uml_dir, dir); if ((mkdir(uml_dir, 0777) < 0) && (errno != EEXIST)) { - printf("Failed to mkdir '%s': %s\n", uml_dir, strerror(errno)); + printf("Failed to mkdir '%s': %s\n", uml_dir, strerror(errno)); err = -errno; goto err_free; } -- 2.1.4