summaryrefslogtreecommitdiff
path: root/ext/notes/php_notes.c
diff options
context:
space:
mode:
authorIlia Alshanetsky <iliaa@php.net>2004-04-27 17:34:05 +0000
committerIlia Alshanetsky <iliaa@php.net>2004-04-27 17:34:05 +0000
commit7de0f803d1b59abec2f84bffcd9e374771bb7321 (patch)
tree8f2302cea8795448c33f896987b4e2aa03713b74 /ext/notes/php_notes.c
parent208a735a855a92a670f2880e0ec851d309989bce (diff)
downloadphp-git-7de0f803d1b59abec2f84bffcd9e374771bb7321.tar.gz
MFH: Removed C++ style comments.
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);