catpoint

simple slides viewer
git clone git://git.2f30.org/catpoint
Log | Files | Refs | README | LICENSE

commit 7a1000a515c116f78aff586026b09ed132c752b7
parent 3d7dc566bca9e1908a459e7647d8a7761c6ae41a
Author: sin <sin@2f30.org>
Date:   Mon, 29 Jul 2013 16:16:44 +0100

No need to use unsigned char *

Diffstat:
Mcatpoint.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/catpoint.c b/catpoint.c @@ -12,7 +12,7 @@ #include <unistd.h> struct slide { - unsigned char *buf; + char *buf; size_t siz; };