Skip to content

Commit

Permalink
Fix custom.c example
Browse files Browse the repository at this point in the history
  • Loading branch information
Jorenar committed Jul 6, 2024
1 parent 2b7be00 commit e858e6c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/custom.c
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@
#include <stdio.h>
#include <xdgdirs.h>

int main()
int main(void)
{
printf("XDG_MUSIC_DIR: %s", xdgCustomVar("MUSIC") );
printf("XDG_MUSIC_DIR: %s\n", xdgCustomVar("MUSIC"));
return 0;
}
/// @endcond

0 comments on commit e858e6c

Please sign in to comment.