aboutsummaryrefslogtreecommitdiff
path: root/src/fs/fs.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/fs/fs.h')
-rw-r--r--src/fs/fs.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/fs/fs.h b/src/fs/fs.h
index c66249613..3c92b42ae 100644
--- a/src/fs/fs.h
+++ b/src/fs/fs.h
@@ -308,13 +308,13 @@ struct GNUNET_FS_FileInformation
308 * Size of the directory itself (in bytes); 0 if the 308 * Size of the directory itself (in bytes); 0 if the
309 * size has not yet been calculated. 309 * size has not yet been calculated.
310 */ 310 */
311 uint64_t dir_size; 311 size_t dir_size;
312 312
313 /** 313 /**
314 * Pointer to the data for the directory (or NULL if not 314 * Pointer to the data for the directory (or NULL if not
315 * available). 315 * available).
316 */ 316 */
317 char *dir_data; 317 void *dir_data;
318 318
319 } dir; 319 } dir;
320 320