From ce116293c802c6dc1185b15d633d96d6d9c6d048 Mon Sep 17 00:00:00 2001 From: Philip Kovacs Date: Mon, 9 Jan 2006 02:38:31 +0000 Subject: [PATCH] infopipe status Not running bug fixed git-svn-id: https://conky.svn.sourceforge.net/svnroot/conky/trunk/conky@491 7f574dfc-610e-0410-a909-a81674777703 --- src/xmms.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/xmms.c b/src/xmms.c index 705207b9..3d38d654 100644 --- a/src/xmms.c +++ b/src/xmms.c @@ -221,7 +221,7 @@ void *xmms_thread_func(void *pvoid) if ((fd=open(INFOPIPE_NAMED_PIPE, O_RDONLY | O_NONBLOCK)) < 0) { /* InfoPipe is not running */ memset(items,0,sizeof(items)); - strcpy(items[INFOPIPE_STATUS],"Not running"); + strcpy(items[XMMS_STATUS],"Not running"); break; }