34 lines
1.1 KiB
Diff
34 lines
1.1 KiB
Diff
From d9ca5dd4426c8bcc779750362bf905395b1b08ef Mon Sep 17 00:00:00 2001
|
|
From: Ruediger Meier <ruediger.meier@ga-group.nl>
|
|
Date: Mon, 9 Feb 2015 16:11:02 +0100
|
|
Subject: [PATCH] setarch: fix typo (missing braces) for ppcle
|
|
|
|
Introduced in 77eb13b9, noticed on ppc64le.
|
|
|
|
CC: Sami Kerola <kerolasa@iki.fi>
|
|
Signed-off-by: Ruediger Meier <ruediger.meier@ga-group.nl>
|
|
---
|
|
sys-utils/setarch.c | 6 +++---
|
|
1 file changed, 3 insertions(+), 3 deletions(-)
|
|
|
|
diff --git a/sys-utils/setarch.c b/sys-utils/setarch.c
|
|
index c8ca5f8..76892ab 100644
|
|
--- a/sys-utils/setarch.c
|
|
+++ b/sys-utils/setarch.c
|
|
@@ -160,9 +160,9 @@ static int set_arch(const char *pers, unsigned long options, int list)
|
|
{PER_LINUX, "ppc64pseries", "ppc64"},
|
|
{PER_LINUX, "ppc64iseries", "ppc64"},
|
|
# else
|
|
- PER_LINUX32, "ppc32le", "ppcle"},
|
|
- PER_LINUX32, "ppcle", "ppcle"},
|
|
- PER_LINUX, "ppc64le", "ppc64le"},
|
|
+ {PER_LINUX32, "ppc32le", "ppcle"},
|
|
+ {PER_LINUX32, "ppcle", "ppcle"},
|
|
+ {PER_LINUX, "ppc64le", "ppc64le"},
|
|
# endif
|
|
#endif
|
|
#if defined(__x86_64__) || defined(__i386__) || defined(__ia64__)
|
|
--
|
|
2.1.0
|
|
|