Skip to content
Snippets Groups Projects
Commit dd7d9fc1 authored by Thomas Jahns's avatar Thomas Jahns :cartwheel:
Browse files

Fix warning for unused parameters.

* The better fix would obviously be to fix the function once a
  reproducer for sufficient overflow is found.
parent 46273364
No related branches found
No related tags found
No related merge requests found
......@@ -724,6 +724,8 @@ static inline Xt_ldiv
xtidiv(Xt_tword a, Xt_int b)
{
/* todo: implement */
(void)a;
(void)b;
Xt_ldiv r = { { 0, 0 }, { 0, 0 } };
return r;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment