summaryrefslogtreecommitdiff
path: root/ext/standard/array.c
diff options
context:
space:
mode:
authorChristopher Jones <sixd@php.net>2009-05-15 16:46:22 +0000
committerChristopher Jones <sixd@php.net>2009-05-15 16:46:22 +0000
commitad07803d23e9f4359779ff54ba2c95e57f4cb3b3 (patch)
tree5162b7ee4eff1f2b631bcc6113efde8d6ac9c682 /ext/standard/array.c
parent178cb9c5723e0edc32f33115886fa440f6c276aa (diff)
downloadphp-git-ad07803d23e9f4359779ff54ba2c95e57f4cb3b3.tar.gz
MFH: New array_multisort() test and code comment fix (Simon Westcott)
Diffstat (limited to 'ext/standard/array.c')
-rw-r--r--ext/standard/array.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/standard/array.c b/ext/standard/array.c
index 46134d5060..d39c0e6bea 100644
--- a/ext/standard/array.c
+++ b/ext/standard/array.c
@@ -3789,7 +3789,7 @@ PHP_FUNCTION(array_multisort)
}
}
- /* If all arrays are empty or have only one entry, we don't need to do anything. */
+ /* If all arrays are empty we don't need to do anything. */
if (array_size < 1) {
for (k = 0; k < MULTISORT_LAST; k++) {
efree(ARRAYG(multisort_flags)[k]);