Write or read buffer in block size chunk.
[bertos.git] / bertos / io / kfile_block.h
index f7b9f9bc4c293d0a23dce94158e72b936bd0af1e..8a1b36bb74d93430bb6e11ee18ba7c151a7f4e9d 100644 (file)
@@ -50,7 +50,7 @@
 typedef struct KFileBlock
 {
        KFile fd;  ///< KFile context
-       KBlock *b; ///< KBlock device
+       KBlock *blk; ///< KBlock device
 } KFileBlock;
 
 /**
@@ -63,6 +63,6 @@ typedef struct KFileBlock
  * \param fb KFileBlock context.
  * \param b  block device to be accessed with a KFile interface.
  */
-void kfileblock_init(KFileBlock *fb, KBlock *b);
+void kfileblock_init(KFileBlock *fb, KBlock *blk);
 
 #endif /* IO_KFILE_KBLOCK_H */