shithub: dumb

Download patch

ref: e9320b6d48769d669cbd402959a0982867c6319c
parent: 8748867cfed4e259d0faff3dbdef109b3d3fe432
author: Christopher Snowhill <kode54@gmail.com>
date: Wed Oct 4 20:21:59 EDT 2017

Update dumb.h

Fix dumb_off_t for custom declarations, no idea how I missed that when proofreading this.

--- a/include/dumb.h
+++ b/include/dumb.h
@@ -95,7 +95,7 @@
 
 /* File Input Functions */
 #ifdef DUMB_OFF_T_CUSTOM
-typedef dumb_off_t DUMB_OFF_T_CUSTOM;
+typedef DUMB_OFF_T_CUSTOM dumb_off_t;
 #elif defined _MSC_VER || defined __WATCOMC__
 typedef __int64 dumb_off_t;
 #elif defined __DJGPP__