summary refs log tree commit diff stats
path: root/src/common/util.c
diff options
context:
space:
mode:
authorBerke Viktor <bviktor@hexchat.org>2012-10-28 00:05:40 +0200
committerBerke Viktor <bviktor@hexchat.org>2012-10-28 00:05:40 +0200
commitfe1d958838cce03179870397f372e723881f2c89 (patch)
tree12a1e7d3d8adb719e08be108e93aa283e38addcf /src/common/util.c
parentd892b3346eace3e8fa5530c9d710c1ce2c9fe34d (diff)
More polishing for the About dialog
Diffstat (limited to 'src/common/util.c')
-rw-r--r--src/common/util.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/common/util.c b/src/common/util.c
index 8f76cfc6..dcd4021f 100644
--- a/src/common/util.c
+++ b/src/common/util.c
@@ -674,7 +674,7 @@ get_cpu_arch (void)
 }
 
 char *
-get_cpu_str (void)
+get_sys_str (int with_cpu)
 {
 	static char verbuf[64];
 	static char winver[20];
@@ -749,7 +749,7 @@ get_cpu_str (void)
 	}
 
 	mhz = get_mhz ();
-	if (mhz)
+	if (mhz && with_cpu)
 	{
 		double cpuspeed = ( mhz > 1000 ) ? mhz / 1000 : mhz;
 		const char *cpuspeedstr = ( mhz > 1000 ) ? "GHz" : "MHz";
@@ -766,7 +766,7 @@ get_cpu_str (void)
 #else
 
 char *
-get_cpu_str (void)
+get_sys_str (int with_cpu)
 {
 #if defined (USING_LINUX) || defined (USING_FREEBSD) || defined (__APPLE__)
 	double mhz;
@@ -784,7 +784,7 @@ get_cpu_str (void)
 
 #if defined (USING_LINUX) || defined (USING_FREEBSD) || defined (__APPLE__)
 	get_cpu_info (&mhz, &cpus);
-	if (mhz)
+	if (mhz && with_cpu)
 	{
 		double cpuspeed = ( mhz > 1000 ) ? mhz / 1000 : mhz;
 		const char *cpuspeedstr = ( mhz > 1000 ) ? "GHz" : "MHz";