summaryrefslogtreecommitdiff
path: root/ext/sqlite3/sqlite3.c
diff options
context:
space:
mode:
authorStanislav Malyshev <stas@php.net>2012-06-30 17:00:25 -0700
committerStanislav Malyshev <stas@php.net>2012-06-30 17:00:25 -0700
commita3322f8927618a8cadbef4ae2121084b44a564d3 (patch)
tree939a94efa58136e851e478e070daf89edaa18376 /ext/sqlite3/sqlite3.c
parenteb012cf88440423ff02c46421f29a1c6e850702c (diff)
parent896ac689c91967dec0601fa9fe048c518da52a3c (diff)
downloadphp-git-a3322f8927618a8cadbef4ae2121084b44a564d3.tar.gz
Merge branch 'PHP-5.4'
* PHP-5.4: Fixed the common misspelling of the word occurred (occured -> occurred)
Diffstat (limited to 'ext/sqlite3/sqlite3.c')
-rw-r--r--ext/sqlite3/sqlite3.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/sqlite3/sqlite3.c b/ext/sqlite3/sqlite3.c
index 4bf24fbc6a..0bb8616d96 100644
--- a/ext/sqlite3/sqlite3.c
+++ b/ext/sqlite3/sqlite3.c
@@ -1097,7 +1097,7 @@ static int php_sqlite3_stream_close(php_stream *stream, int close_handle TSRMLS_
php_stream_sqlite3_data *sqlite3_stream = (php_stream_sqlite3_data *) stream->abstract;
if (sqlite3_blob_close(sqlite3_stream->blob) != SQLITE_OK) {
- /* Error occured, but it still closed */
+ /* Error occurred, but it still closed */
}
efree(sqlite3_stream);