aboutsummaryrefslogtreecommitdiff
path: root/src/util/program.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/util/program.c')
-rw-r--r--src/util/program.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/util/program.c b/src/util/program.c
index bfa58dc65..b6d0c78c6 100644
--- a/src/util/program.c
+++ b/src/util/program.c
@@ -95,10 +95,10 @@ program_main (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
95 * @param a2 second command line option 95 * @param a2 second command line option
96 */ 96 */
97static int 97static int
98cmd_sorter (__const void *a1, __const void *a2) 98cmd_sorter (const void *a1, const void *a2)
99{ 99{
100 __const struct GNUNET_GETOPT_CommandLineOption *c1 = a1; 100 const struct GNUNET_GETOPT_CommandLineOption *c1 = a1;
101 __const struct GNUNET_GETOPT_CommandLineOption *c2 = a2; 101 const struct GNUNET_GETOPT_CommandLineOption *c2 = a2;
102 102
103 if (toupper ((unsigned char) c1->shortName) > 103 if (toupper ((unsigned char) c1->shortName) >
104 toupper ((unsigned char) c2->shortName)) 104 toupper ((unsigned char) c2->shortName))