From: Jon Loeliger <jdl@jdl.com>
Date: Wed, 23 Jan 2008 21:55:02 +0000 (-0600)
Subject: 86xx: Fix compilation warning in sys_eprom.c
X-Git-Tag: v2025.01-rc5-pxa1908~22530^2^2~1
X-Git-Url: http://git.dujemihanovic.xyz/img/%7B%7B%20%24image.RelPermalink%20%7D%7D?a=commitdiff_plain;h=3f2ac8f928c76cbd2374437b2d079f8b4324aaba;p=u-boot.git

86xx: Fix compilation warning in sys_eprom.c

sys_eeprom.c:82:9: warning: unknown escape sequence '\/'

Signed-off-by: Jon Loeliger <jdl@freescale.com>
---

diff --git a/board/freescale/common/sys_eeprom.c b/board/freescale/common/sys_eeprom.c
index 44c097867f..c8e17d0dd0 100644
--- a/board/freescale/common/sys_eeprom.c
+++ b/board/freescale/common/sys_eeprom.c
@@ -79,7 +79,7 @@ int mac_show(void)
 	/* Show Build Date,
 	 * BCD date values, as YYMMDDhhmmss.
 	 */
-	printf("Date 20%02x\/%02x\/%02x %02x:%02x:%02x\n",
+	printf("Date 20%02x/%02x/%02x %02x:%02x:%02x\n",
 	       mac_data.date[0],
 	       mac_data.date[1],
 	       mac_data.date[2],