1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2024-12-26 12:27:52 +00:00

infopipe status Not running bug fixed

git-svn-id: https://conky.svn.sourceforge.net/svnroot/conky/trunk/conky@491 7f574dfc-610e-0410-a909-a81674777703
This commit is contained in:
Philip Kovacs 2006-01-09 02:38:31 +00:00
parent 5a2fae8dd0
commit ce116293c8

View File

@ -221,7 +221,7 @@ void *xmms_thread_func(void *pvoid)
if ((fd=open(INFOPIPE_NAMED_PIPE, O_RDONLY | O_NONBLOCK)) < 0) { if ((fd=open(INFOPIPE_NAMED_PIPE, O_RDONLY | O_NONBLOCK)) < 0) {
/* InfoPipe is not running */ /* InfoPipe is not running */
memset(items,0,sizeof(items)); memset(items,0,sizeof(items));
strcpy(items[INFOPIPE_STATUS],"Not running"); strcpy(items[XMMS_STATUS],"Not running");
break; break;
} }