]> mj.ucw.cz Git - libucw.git/blobdiff - ucw/fb-limfd.c
tableprinter: code cleanup
[libucw.git] / ucw / fb-limfd.c
index 0ce80c6ab90f1a4b5388567c10bbf0d8be1ce012..426f57f79d1d59e4c3b3135999b44e00a9173e7a 100644 (file)
@@ -7,8 +7,8 @@
  *     of the GNU Lesser General Public License.
  */
 
-#include "ucw/lib.h"
-#include "ucw/fastbuf.h"
+#include <ucw/lib.h>
+#include <ucw/fastbuf.h>
 
 #include <unistd.h>
 
@@ -40,7 +40,7 @@ bfl_close(struct fastbuf *f)
 }
 
 struct fastbuf *
-bopen_limited_fd(int fd, uns buflen, uns limit)
+bopen_limited_fd(int fd, uint buflen, uint limit)
 {
   struct fb_limfd *F = xmalloc(sizeof(struct fb_limfd) + buflen);
   struct fastbuf *f = &F->fb;