X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=aft.c;h=f4080233855009be5423b3bc9325b861d5f20b0c;hp=078876be4d5533e438bf75c08f1c1988eba2b768;hb=dac7f181d6d8853ec5caecb3202b4fcc14e45d51;hpb=dfb5f82f2cf5f9e6b7367196a8a2b76b323ffb36 diff --git a/aft.c b/aft.c index 078876be..f4080233 100644 --- a/aft.c +++ b/aft.c @@ -18,7 +18,6 @@ #include "string.h" #include "afh.h" #include "afs.h" -#include "net.h" #include "fd.h" #include "ipc.h" #include "portable_io.h" @@ -1824,7 +1823,7 @@ static void hash_sister_callback(int fd, const struct osl_object *query) static int get_row_pointer_from_result(struct osl_object *result, void *private) { struct osl_row **row = private; - *row = result->data; + *row = *(struct osl_row **)(result->data); return 1; }