summaryrefslogtreecommitdiff
path: root/Examples/lua/arrays/example.c
diff options
context:
space:
mode:
Diffstat (limited to 'Examples/lua/arrays/example.c')
-rw-r--r--Examples/lua/arrays/example.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Examples/lua/arrays/example.c b/Examples/lua/arrays/example.c
index ed23738c8..da1bd755a 100644
--- a/Examples/lua/arrays/example.c
+++ b/Examples/lua/arrays/example.c
@@ -13,7 +13,7 @@ void sort_int(int* arr, int len)
qsort(arr, len, sizeof(int), compare_int);
}
-// ditto doubles
+/* ditto doubles */
int compare_double(const void * a, const void * b)
{
return (int)( *(double*)a - *(double*)b );