diff options
author | Tom Van Looy <tom@ctors.net> | 2017-06-25 23:24:23 +0200 |
---|---|---|
committer | Nikita Popov <nikita.ppv@gmail.com> | 2017-06-26 00:23:25 +0200 |
commit | 04fb3f28ff677d036cfaf902f07b75f0346a5c33 (patch) | |
tree | 853db28cee8906637515d49c758776032884fe37 /main/streams/plain_wrapper.c | |
parent | b3849edf2ce168740256c48ee0a4631bb56086b8 (diff) | |
download | php-git-04fb3f28ff677d036cfaf902f07b75f0346a5c33.tar.gz |
Remove superfluous semicolons
Diffstat (limited to 'main/streams/plain_wrapper.c')
-rw-r--r-- | main/streams/plain_wrapper.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main/streams/plain_wrapper.c b/main/streams/plain_wrapper.c index 4cd6cca854..537021abd6 100644 --- a/main/streams/plain_wrapper.c +++ b/main/streams/plain_wrapper.c @@ -1007,7 +1007,7 @@ PHPAPI php_stream *_php_stream_fopen(const char *filename, const char *mode, zen /* fall through */ case PHP_STREAM_PERSISTENT_FAILURE: - efree(persistent_id);; + efree(persistent_id); return ret; } } |