On Tue, Sep 23, 2025 at 03:18:43PM -0400, Jason Mitchell wrote: > while((c=getopt(argc,argv,"i:dt:hoa"))!=EOF) { Check how "c" is declared - I bet it is "char c" - and that is wrong. It needs to be "int c". Martin