From: Martin Mares Date: Tue, 26 Feb 2013 12:37:59 +0000 (+0100) Subject: Doc: Fixed a typo X-Git-Tag: v5.99~87 X-Git-Url: http://mj.ucw.cz/gitweb/?a=commitdiff_plain;h=65edcec91a3b7d9f913a06742aa07fbc2b4fa146;p=libucw.git Doc: Fixed a typo Thanks to Martina Balintova who spotted it. --- diff --git a/ucw/doc/sort.txt b/ucw/doc/sort.txt index dfc89e03..5d3eaef0 100644 --- a/ucw/doc/sort.txt +++ b/ucw/doc/sort.txt @@ -96,7 +96,7 @@ to sort them by the strings. #define ASORT_ELT(i) ((i % 2 ? even_array : odd_array)[i / 2]) #define ASORT_LT(x, y) (strcmp((x).string, (y).string) < 0) #define ASORT_EXTRA_ARGS , struct elem *odd_array, struct elem *even_array - #include + #include Now we got a complicated_sort(uns array_size, struct elem *odd_array, struct *even_array) function to perform our sorting.