Skip to content
Snippets Groups Projects
Commit 4bde7701 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

added some extra typecasts to prevent compiler warnings when converting

int to various types
parent 9af7e46f
No related branches found
No related tags found
No related merge requests found
......@@ -939,15 +939,15 @@ static int dprintf_formatf(
/* Answer the count of characters written. */
#ifdef HAVE_LONGLONG
if (p->flags & FLAGS_LONGLONG)
*(long long int *) p->data.ptr = done;
*(long long *) p->data.ptr = (long long)done;
else
#endif
if (p->flags & FLAGS_LONG)
*(long int *) p->data.ptr = done;
*(long *) p->data.ptr = (long)done;
else if (!(p->flags & FLAGS_SHORT))
*(int *) p->data.ptr = done;
*(int *) p->data.ptr = (int)done;
else
*(short int *) p->data.ptr = done;
*(short *) p->data.ptr = (short)done;
break;
default:
......
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