summaryrefslogtreecommitdiff
path: root/ext/notes/php_notes.c
diff options
context:
space:
mode:
Diffstat (limited to 'ext/notes/php_notes.c')
-rw-r--r--ext/notes/php_notes.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/notes/php_notes.c b/ext/notes/php_notes.c
index 16a459ceb1..aa59b59daf 100644
--- a/ext/notes/php_notes.c
+++ b/ext/notes/php_notes.c
@@ -1912,14 +1912,14 @@ PHP_FUNCTION(notes_search)
pNoteID = (NOTEID *) (((char *) pSearchResults)
+ sizeof(FT_SEARCH_RESULTS));
- //pSearchResults->NumHits
+ /* pSearchResults->NumHits */
array_init(return_value);
pScores = (BYTE *) (pNoteID + pSearchResults->NumHits);
for (i = 0; i < pSearchResults->NumHits; i++, pNoteID++, pScores++){
add_next_index_long(return_value, (long) *pNoteID );
- //RETVAL_LONG( (long) *pNoteID );
+ /* RETVAL_LONG( (long) *pNoteID ); */
}
OSUnlockObject (SearchResults_handle);