]> git.webhop.me Git - lcd4linux.git/commitdiff
[lcd4linux @ 2001-03-08 08:39:54 by reinelt]
authorreinelt <reinelt@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>
Thu, 8 Mar 2001 08:39:55 +0000 (08:39 +0000)
committerreinelt <reinelt@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>
Thu, 8 Mar 2001 08:39:55 +0000 (08:39 +0000)
fixed two typos

git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@101 3ae390bd-cb1e-0410-b409-cd5a39f66f1f

exec.c
processor.c

diff --git a/exec.c b/exec.c
index 0b7edd4809a088141660af53a1ade8ab617cfcb9..26172066adc5561ab63343e293c88b44cd094823 100644 (file)
--- a/exec.c
+++ b/exec.c
@@ -1,4 +1,4 @@
-/* $Id: exec.c,v 1.1 2001/03/07 18:10:21 ltoetsch Exp $
+/* $Id: exec.c,v 1.2 2001/03/08 08:39:54 reinelt Exp $
  *
  * exec ('x*') functions
  *
  *
  *
  * $Log: exec.c,v $
+ * Revision 1.2  2001/03/08 08:39:54  reinelt
+ *
+ * fixed two typos
+ *
  * Revision 1.1  2001/03/07 18:10:21  ltoetsch
  * added e(x)ec commands
  *
@@ -55,7 +59,7 @@ int Exec(int index, char buff[EXEC_TXT_LEN])
   
   pipe = popen(command, "r");
   if (pipe == NULL) {
-    error("Couln't run pip '%s'", command);
+    error("Couln't run pipe '%s'", command);
     return -1;
   }
   fread(buff, EXEC_TXT_LEN, 1, pipe);
index e65b475360e192c404a18b63dc8c82ff1fe00d1d..0f9913c311db26101fb069f38f9c13076b99e1dd 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: processor.c,v 1.16 2001/03/07 18:10:21 ltoetsch Exp $
+/* $Id: processor.c,v 1.17 2001/03/08 08:39:55 reinelt Exp $
  *
  * main data processing
  *
  *
  *
  * $Log: processor.c,v $
+ * Revision 1.17  2001/03/08 08:39:55  reinelt
+ *
+ * fixed two typos
+ *
  * Revision 1.16  2001/03/07 18:10:21  ltoetsch
  * added e(x)ec commands
  *
@@ -521,7 +525,7 @@ static void collect_data (void)
 
   for (i=1; i<EXECS; i++) {
     if (token_usage[T_EXEC]&(1<<i)) {
-      Exec (i, &exec[i].s);
+      Exec (i, exec[i].s);
     }
   }
 }