od: fix for -t option - sbase - suckless unix tools
 (HTM) git clone git://git.suckless.org/sbase
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit 99a32820a148780d2f085f6b4bd6bd2011c365c2
 (DIR) parent 1281dc4f902331be25ead726606226d1196d1e52
 (HTM) Author: noneofyourbusiness <noneofyourbusiness@danwin1210.de>
       Date:   Tue, 30 Sep 2025 19:05:50 +0200
       
       od: fix for -t option
       
       Don't increment pointer after call to addtype.
       
       Signed-off-by: noneofyourbusiness <noneofyourbusiness@danwin1210.de>
       
       Diffstat:
         M od.c                                |       2 +-
       
       1 file changed, 1 insertion(+), 1 deletion(-)
       ---
 (DIR) diff --git a/od.c b/od.c
       @@ -281,7 +281,7 @@ main(int argc, char *argv[])
                                                        len = sizeof(int);
                                                }
                                        }
       -                                addtype(*s++, len);
       +                                addtype(*s, len);
                                        break;
                                default:
                                        usage();