Fixed several problem with the file store.

This commit is contained in:
2016-06-16 00:04:21 -05:00
parent 980194f2a7
commit ff3d441329
10 changed files with 147 additions and 71 deletions
+1 -1
View File
@@ -10,7 +10,7 @@
namespace wombat {
namespace fs {
void memcpy(void *src, void *dest, int size) {
void memcpy(void *dest, void *src, int size) {
char *srcBuf = (char*) src;
char *dstBuf = (char*) dest;
for (int i = 0; i < size; i++) {