include infopipe header
authorPhilip Kovacs <pkovacs@users.sourceforge.net>
Sat, 7 Jan 2006 01:43:30 +0000 (01:43 +0000)
committerPhilip Kovacs <pkovacs@users.sourceforge.net>
Sat, 7 Jan 2006 01:43:30 +0000 (01:43 +0000)
git-svn-id: https://conky.svn.sourceforge.net/svnroot/conky/trunk/conky@481 7f574dfc-610e-0410-a909-a81674777703

src/infopipe.c

index a130747..9bd0639 100644 (file)
@@ -33,6 +33,7 @@
 #include <unistd.h>
 #include <stdio.h>
 #include <string.h>
+#include "infopipe.h"
 #include "conky.h"
 
 /* access to this item array is synchronized with mutexes */
@@ -44,7 +45,7 @@ static infopipe_t g_items;
 void update_infopipe(void)
 {
     /* 
-      The worker thread is updating ihe g_items array asynchronously to the main 
+      The worker thread is updating the g_items array asynchronously to the main 
       conky thread.  We merely copy the g_items array into the main thread's info
       structure when the main thread's update cycle fires.   Note that using the
       mutexes here makes it easier since we won't have to do any sync in conky.c.