1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2024-11-18 02:55:12 +00:00

free_all_processes() has been placed in "#ifdef i386" zone for some

reason. Fix that to make it link on arch != i386.


git-svn-id: https://conky.svn.sourceforge.net/svnroot/conky/trunk/conky@439 7f574dfc-610e-0410-a909-a81674777703
This commit is contained in:
Roman Bogorodskiy 2005-12-08 13:20:29 +00:00
parent 0633e854c7
commit c34df9e6ee

View File

@ -741,9 +741,9 @@ char *get_apm_battery_time()
return out;
}
#endif
/* empty stub so conky links */
void free_all_processes( void )
void free_all_processes(void)
{
}
#endif