summary refs log tree commit diff stats
path: root/src/fe-gtk/about.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/fe-gtk/about.c')
-rw-r--r--src/fe-gtk/about.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/fe-gtk/about.c b/src/fe-gtk/about.c
index 020df8ce..c576e900 100644
--- a/src/fe-gtk/about.c
+++ b/src/fe-gtk/about.c
@@ -122,18 +122,18 @@ menu_about (GtkWidget * wid, gpointer sess)
 	g_get_charset (&locale);
 	(snprintf) (buf, sizeof (buf),
 				"<b>Version</b>: "PACKAGE_VERSION"\n"
-				"<b>OS</b>: %s\n"
 				"<b>Compiled</b>: "__DATE__"\n"
 #ifdef WIN32
 				"<b>Portable Mode</b>: %s\n"
 				"<b>Build Type</b>: x%d\n"
 #endif
+				"<b>OS</b>: %s\n"
 				"<b>Charset</b>: %s",
-				get_cpu_str (),
 #ifdef WIN32
 				(portable_mode () ? "Yes" : "No"),
 				get_cpu_arch (),
 #endif
+				get_sys_str (0),
 				locale);
 
 	label_info = gtk_label_new (NULL);