From fa67300f537808f7e3fa3bb501f1f268d520073b Mon Sep 17 00:00:00 2001 From: Pixel Date: Thu, 27 Oct 2011 09:18:52 -0700 Subject: Fixing a few oddities, and having the 'clean' target cleaning LuaJIT as well. --- includes/Handle.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'includes/Handle.h') diff --git a/includes/Handle.h b/includes/Handle.h index 321d8db..5def509 100644 --- a/includes/Handle.h +++ b/includes/Handle.h @@ -32,7 +32,7 @@ class Handle { virtual const char * getName() = 0; virtual ssize_t read(void * buf, size_t count) throw (GeneralException); virtual ssize_t write(const void * buf, size_t count) throw (GeneralException); - void writeString(const char * str, size_t len = -1) { if (len < 0) len = strlen(str); write(str, len); } + void writeString(const char * str, ssize_t len = -1) { if (len < 0) len = strlen(str); write(str, len); } void writeString(const String & str) { write(str.to_charp(), str.strlen()); } virtual void rseek(off_t offset, int whence = SEEK_SET) throw (GeneralException); virtual void wseek(off_t offset, int whence = SEEK_SET) throw (GeneralException); -- cgit v1.2.3