Browse Source

Term C header file fix

Arturs Jefimovs 1 month ago
parent
commit
b9a5386aec
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/term/term.h

+ 1 - 1
src/term/term.h

@@ -2,7 +2,7 @@
 #define TERM_H
 #define TERM_H
 
 
 int StartProcessIn(char *process, char *dir);
 int StartProcessIn(char *process, char *dir);
-int ProcessFinished();
+int ProcessFinished(int *err);
 int WriteToProcess(char *buf, int len);
 int WriteToProcess(char *buf, int len);
 int ReadFromProcess(char *buf, int *len, int limit);
 int ReadFromProcess(char *buf, int *len, int limit);
 int RunProcessIn(char *cmd, char *dir, char *buf, int limit, int *len, int *err);
 int RunProcessIn(char *cmd, char *dir, char *buf, int limit, int *len, int *err);