summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/Exceptions.h2
-rw-r--r--include/HttpServ.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/include/Exceptions.h b/include/Exceptions.h
index e72a8a2..71e2bac 100644
--- a/include/Exceptions.h
+++ b/include/Exceptions.h
@@ -74,7 +74,7 @@ class Base {
xfree((void *) p);
}
static int pipe(int * p, int flag = 0) {
- return xpipe(p);
+ return xpipe(p, flag);
}
};
diff --git a/include/HttpServ.h b/include/HttpServ.h
index 564e24d..2518c55 100644
--- a/include/HttpServ.h
+++ b/include/HttpServ.h
@@ -20,7 +20,7 @@
class HttpServ : public Task {
public:
HttpServ(Action *, int = 1500, const String & = String("GruiK Server v0.1")) throw (GeneralException);
- ~HttpServ() {}
+ ~HttpServ();
void SetMenu(Action *);
virtual String GetName();