Skip to content

Commit

Permalink
%ld format specifier
Browse files Browse the repository at this point in the history
  • Loading branch information
a-random-lemurian committed Nov 27, 2023
1 parent cde1d1f commit ba7d932
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/uselinux/deskenv.c
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ void desktop_environments(char *desk)

for (size_t i = 0; i < LEN(deskenvs); i++)
{
printf("%d\n",i);
printf("%ld\n", i);
if (!strcasecmp(desk, deskenvs[i].string))
{
deskenvs[i].responder();
Expand Down

0 comments on commit ba7d932

Please sign in to comment.