default so it returns sth always

This commit is contained in:
LinlyBoi
2023-08-22 18:27:01 +03:00
parent 569d88bce0
commit f17ab84939

View File

@@ -70,6 +70,8 @@ int fmt(char c, va_list args)
case '%': /*add 1 byte*/
return (_putchar('%'));
break;
default:
return (0);
}
}