1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2024-12-25 04:06:03 +00:00

Fix build on FreeBSD on arches !(i386 or amd64).

git-svn-id: https://conky.svn.sourceforge.net/svnroot/conky/trunk/conky1@857 7f574dfc-610e-0410-a909-a81674777703
This commit is contained in:
Roman Bogorodskiy 2007-04-15 04:58:41 +00:00
parent fc72692cc7
commit 7515d8319a

View File

@ -530,7 +530,7 @@ get_freq_dynamic(char *p_client_buffer, size_t client_buffer_size,
snprintf(p_client_buffer, client_buffer_size, p_format,
(float)((cycles[1] - cycles[0]) / microseconds) / divisor);
#else
get_freq(p_client_buffer, client_buffer_size, p_format, divisor);
get_freq(p_client_buffer, client_buffer_size, p_format, divisor, 1);
#endif
}