[julia] sort options in usage

This commit is contained in:
Lucas 2020-03-13 01:27:24 +00:00
parent ccb58d1055
commit 82a83dafbe
1 changed files with 4 additions and 5 deletions

View File

@ -105,11 +105,10 @@ iterate(long double complex z, long double complex c, long double *rit)
static void
usage(void)
{
fprintf(stderr, "Usage: %s julia [-L] [-x julia_x] [-y julia_y]\n"
" [-n niters] [-h height] [-w width] [-z zoom]\n"
" [-a center_x] [-b center_y] [-l light_intensity]\n"
" [-d density] [-c contour] [-D displacement]\n"
" [-N newton_iters]\n",
fprintf(stderr, "Usage: %s julia [-L] [-a center_x] [-b center_y]\n"
" [-c contour] [-D displacement] [-d density] [-h height]\n"
" [-l light_intensity] [-N newton_iters] [-n iters]\n"
" [-w width] [-x julia_x] [-y julia_y] [-z zoom]\n",
xgetprogname());
exit(1);
}