Commit 004e1d2f authored by Luis Fernando Ruiz's avatar Luis Fernando Ruiz Committed by Alessandro Rubini

fdelay-pulse-tom: fix signedness of default_width

parent c7123b20
......@@ -143,7 +143,8 @@ int main(int argc, char **argv)
int devid = 0;
int64_t default_width = 250000; fdelay_pico_to_time(&default_width, &t_width);
uint64_t default_width = 250000;
fdelay_pico_to_time(&default_width, &t_width);
while ((opt = getopt(argc, argv, "hctd:m:o:a:s:w:g:q:")) != -1) {
switch(opt)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment