Skip to content

Commit 03f3b84

Browse files
committed
Sync leading and final newlines in source code files
This patch adds missing newlines, trims multiple redundant final newlines into a single one, and trims redundant leading newlines. According to POSIX, a line is a sequence of zero or more non-' <newline>' characters plus a terminating '<newline>' character. [1] Files should normally have at least one final newline character. C89 [2] and later standards [3] mention a final newline: "A source file that is not empty shall end in a new-line character, which shall not be immediately preceded by a backslash character." Although it is not mandatory for all files to have a final newline fixed, a more consistent and homogeneous approach brings less of commit differences issues and a better development experience in certain text editors and IDEs. [1] http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/V1_chap03.html#tag_03_206 [2] https://port70.net/~nsz/c/c89/c89-draft.html#2.1.1.2 [3] https://port70.net/~nsz/c/c99/n1256.html#5.1.1.2
1 parent ed64e1d commit 03f3b84

File tree

578 files changed

+196
-747
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

578 files changed

+196
-747
lines changed

.appveyor.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
version: "{branch}.build.{build}"
32

43
image: Visual Studio 2015
@@ -47,4 +46,3 @@ build_script:
4746

4847
test_script:
4948
- appveyor\test.bat
50-

Makefile.frag

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
#
32
# Zend
43
#

Makefile.gcov

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
#
32
# LCOV
43
#

README.EXT_SKEL

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,4 +185,3 @@ PHP_FUNCTION(module_name_drawtext)
185185
php_error(E_WARNING, "module_name_drawtext: not yet implemented");
186186
}
187187
/* }}} */
188-

README.REDIST.BINS

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -414,4 +414,3 @@ OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
414414
WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
415415
OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
416416
ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
417-

README.SELF-CONTAINED-EXTENSIONS

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,4 +167,3 @@ PECL SITE CONFORMITY
167167

168168
This macros has to be used within your foo_module_entry to indicate the
169169
extension version.
170-

README.TESTING2

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -132,6 +132,3 @@ regular expect sections. For example:
132132

133133
--EXPECTHEADERS--
134134
Status: 404
135-
136-
137-

README.WIN32-BUILD-SYSTEM

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,3 @@ The Win32 Build System.
33
See http://wiki.php.net/internals/windows/stepbystepbuild
44

55
vim:tw=78:sw=1:ts=1:et
6-

README.md

Lines changed: 0 additions & 1 deletion

README.namespaces

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,4 +171,3 @@ TODO
171171
* Add getNamespace() methods to ReflectionClass and ReflectionFunction
172172

173173
* Rename namespaces to packages?
174-

TSRM/acinclude.m4

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
21
AC_DEFUN([AM_SET_LIBTOOL_VARIABLE],[
32
LIBTOOL='$(SHELL) $(top_builddir)/libtool $1'
43
])
5-

TSRM/config.w32

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,3 @@
33

44
ADD_SOURCES("TSRM", "TSRM.c tsrm_strtok_r.c tsrm_win32.c");
55
ADD_FLAG("CFLAGS_BD_TSRM", "/D ZEND_ENABLE_STATIC_TSRMLS_CACHE=1");
6-

TSRM/m4/gethostbyname.m4

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,4 +194,3 @@ esac
194194
AC_LANG_POP
195195
196196
]) dnl end AC_DEFUN
197-

UPGRADING

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -523,4 +523,3 @@ PHP 7.1 UPGRADE NOTES
523523
========================================
524524
13. Other Changes
525525
========================================
526-

UPGRADING.INTERNALS

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,4 +88,3 @@ changes. See: https://wiki.php.net/phpng-upgrading
8888
========================
8989
3. Module changes
9090
========================
91-

Zend/Makefile.am

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,4 +53,3 @@ depend:
5353

5454
zend_execute.lo: $(srcdir)/zend_execute.c
5555
$(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CPPFLAGS) $(INLINE_CFLAGS) -c $(srcdir)/zend_execute.c
56-

Zend/README.ZEND_VM

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,4 +105,3 @@ Zend Engine II currently includes two executors during the build process, one
105105
is the specialized version and the other is the old one non-specialized with
106106
function handlers. By default Zend Engine II uses the specialized one but you
107107
can switch to the old executor at runtime by calling zend_vm_use_old_executor().
108-

Zend/RFCs/001.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,4 +133,3 @@ The new object model is not dependent on other features. Many of the
133133
other Zend Engine 2.0 features, such as the $foo->bar()->barbara()
134134
syntax, destructors and others completely rely on this new object
135135
model.
136-

Zend/RFCs/003.txt

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,3 @@ following could not reliably run.
6666

6767
Old code that does not take advantage of this will run without
6868
modifications.
69-
70-
71-
72-

Zend/buildconf

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,3 @@ if cmp configure.old configure > /dev/null 2>&1; then
3030
else
3131
echo "buildconf: created or modified ${1}configure"
3232
fi
33-

Zend/tests/bug40236.inc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ function func5() { }
77
function func6() { }
88
function func7() { }
99
print ("ok\n");
10-
?>
10+
?>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
<?php
22
function nested() {
33
throw new LogicException('Should not be called');
4-
}
4+
}

Zend/tests/nowdoc.inc

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,3 @@ class d { public function __construct() { $this->d = 4; } };
88
$d = new d;
99

1010
?>
11-

Zend/tests/return_types/classes.php.inc

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,3 @@
22

33
class A {}
44
class B extends A {}
5-

Zend/zend_dtrace.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,4 +114,3 @@ ZEND_API void dtrace_execute_internal(zend_execute_data *execute_data, zval *ret
114114
/* }}} */
115115

116116
#endif /* HAVE_DTRACE */
117-

Zend/zend_highlight.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -240,4 +240,3 @@ ZEND_API void zend_strip(void)
240240
* indent-tabs-mode: t
241241
* End:
242242
*/
243-

Zend/zend_smart_str.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,4 +120,3 @@ static zend_always_inline void smart_str_setl(smart_str *dest, const char *src,
120120
}
121121

122122
#endif
123-

Zend/zend_strtod_int.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,4 +145,3 @@ typedef unsigned long int uint32_t;
145145
#endif
146146

147147
#endif /* ZEND_STRTOD_INT_H */
148-

Zend/zend_vm_execute.skl

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,4 +82,3 @@ ZEND_API void zend_deserialize_opcode_handler(zend_op *op)
8282
{
8383
op->handler = zend_opcode_handlers[(zend_uintptr_t)op->handler];
8484
}
85-

appveyor/build.bat

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,4 +42,3 @@ cmd /c %SDK_RUNNER% -t %APPVEYOR_BUILD_FOLDER%\appveyor\build_task.bat
4242
if %errorlevel% neq 0 exit /b 3
4343

4444
exit /b 0
45-

appveyor/build_task.bat

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,4 +57,3 @@ nmake /NOLOGO
5757
if %errorlevel% neq 0 exit /b 3
5858

5959
exit /b 0
60-

appveyor/test.bat

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,3 @@ cmd /c %SDK_RUNNER% -t %APPVEYOR_BUILD_FOLDER%\appveyor\test_task.bat
1010
if %errorlevel% neq 0 exit /b 3
1111

1212
exit /b 0
13-

appveyor/test_task.bat

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,4 +86,3 @@ cd "%APPVEYOR_BUILD_FOLDER%"
8686
nmake test TESTS="%OPCACHE_OPTS% -q --offline --show-diff --set-timeout 120 -g FAIL,XFAIL,BORK,WARN,LEAK,SKIP --temp-source c:\tests_tmp --temp-target c:\tests_tmp"
8787

8888
exit /b %errorlevel%
89-

build/build2.mk

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,4 +52,3 @@ configure: aclocal.m4 configure.in $(config_m4_files)
5252
@echo rebuilding $@
5353
@rm -f $@
5454
$(PHP_AUTOCONF) -f $(SUPPRESS_WARNINGS)
55-

build/genif.sh

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,5 +38,3 @@ cat $infile | \
3838
-e "s'@EXT_MODULE_PTRS@'$module_ptrs'" \
3939
-e 's/@NEWLINE@/\
4040
/g'
41-
42-

buildconf.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ SET PHP_BUILDCONF_PATH=%~dp0
44
copy %PHP_BUILDCONF_PATH%\win32\build\configure.bat %PHP_BUILDCONF_PATH% > nul
55
SET PHP_SDK_SCRIPT_PATH=
66

7-
IF NOT EXIST %PHP_BUILDCONF_PATH% (echo Error generating configure script, configure script was not copied) ELSE (echo Now run 'configure --help')
7+
IF NOT EXIST %PHP_BUILDCONF_PATH% (echo Error generating configure script, configure script was not copied) ELSE (echo Now run 'configure --help')

ext/bcmath/libbcmath/AUTHORS

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1 @@
11
Phil Nelson <[email protected]> wrote bcmath library.
2-
3-

ext/bcmath/libbcmath/COPYING.LIB

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
GNU LESSER GENERAL PUBLIC LICENSE
32
Version 2.1, February 1999
43

@@ -511,5 +510,3 @@ Random Hacker.
511510
Ty Coon, President of Vice
512511

513512
That's all there is to it!
514-
515-

ext/bcmath/libbcmath/ChangeLog

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,3 @@ Wed Jun 7 09:39:02 2000 Phil Nelson <[email protected]>
77
2000-05-21 Phil Nelson <[email protected]>
88

99
* Initial setup of bcmath library., calling it version 0.1.
10-

ext/bcmath/libbcmath/FAQ

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,3 @@ calculate an exact number of digits after the decimal point regardless
1818
of the number of digits in the integer part. GMP floats have a
1919
"fixed, but arbitrary" mantissa and so multiplying two floats will end
2020
up dropping digits BC must calculate.
21-

ext/bcmath/libbcmath/Makefile.am

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,3 @@ dist-hook:
99
cp $(srcdir)/doc/bcmath.1 $(distdir)/doc
1010
cp $(srcdir)/src/private.h $(distdir)/src
1111
cp $(srcdir)/FAQ $(distdir)
12-

ext/bcmath/libbcmath/acconfig.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,3 @@
66

77
/* Define to `size_t' if <sys/types.h> and <stddef.h> don't define. */
88
#undef ptrdiff_t
9-

ext/bcmath/libbcmath/aclocal.m4

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,4 +124,3 @@ for am_file in <<$1>>; do
124124
am_indx=`expr "<<$>>am_indx" + 1`
125125
done<<>>dnl>>)
126126
changequote([,]))])
127-

ext/bcmath/libbcmath/config.h.in

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,3 @@
3838

3939
/* Version number of package */
4040
#undef VERSION
41-

ext/bcmath/libbcmath/configure

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1855,5 +1855,3 @@ EOF
18551855
chmod +x $CONFIG_STATUS
18561856
rm -fr confdefs* $ac_clean_files
18571857
test "$no_create" = yes || ${CONFIG_SHELL-/bin/sh} $CONFIG_STATUS || exit 1
1858-
1859-

ext/bcmath/libbcmath/configure.in

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,3 @@ AC_TYPE_SIZE_T
1515
AC_CHECK_TYPE(ptrdiff_t, size_t)
1616

1717
AC_OUTPUT(Makefile src/Makefile doc/Makefile)
18-

ext/bcmath/libbcmath/src/add.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,4 +85,3 @@ bc_add (n1, n2, result, scale_min)
8585
bc_free_num (result);
8686
*result = sum;
8787
}
88-

ext/bcmath/libbcmath/src/compare.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,4 +158,3 @@ bc_compare (n1, n2)
158158
{
159159
return _bc_do_compare (n1, n2, TRUE, FALSE);
160160
}
161-

ext/bcmath/libbcmath/src/div.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -271,4 +271,3 @@ bc_divide (bc_num n1, bc_num n2, bc_num *quot, int scale)
271271

272272
return 0; /* Everything is OK. */
273273
}
274-

ext/bcmath/libbcmath/src/divmod.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,4 +84,3 @@ bc_modulo (bc_num num1, bc_num num2, bc_num *result, int scale)
8484
{
8585
return bc_divmod (num1, num2, NULL, result, scale);
8686
}
87-

ext/bcmath/libbcmath/src/doaddsub.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,4 +229,3 @@ _bc_do_sub (n1, n2, scale_min)
229229
_bc_rm_leading_zeros (diff);
230230
return diff;
231231
}
232-

ext/bcmath/libbcmath/src/init.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,4 +131,3 @@ bc_init_num (bc_num *num)
131131
{
132132
*num = bc_copy_num (BCG(_zero_));
133133
}
134-

ext/bcmath/libbcmath/src/int2num.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,4 +81,3 @@ bc_int2num (num, val)
8181
while (ix-- > 0)
8282
*vptr++ = *--bptr;
8383
}
84-

ext/bcmath/libbcmath/src/nearzero.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,4 +66,3 @@ bc_is_near_zero (num, scale)
6666
else
6767
return TRUE;
6868
}
69-

ext/bcmath/libbcmath/src/neg.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,4 +46,3 @@ bc_is_neg (num)
4646
{
4747
return num->n_sign == MINUS;
4848
}
49-

ext/bcmath/libbcmath/src/num2long.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,4 +67,3 @@ bc_num2long (num)
6767
else
6868
return (-val);
6969
}
70-

ext/bcmath/libbcmath/src/raise.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,4 +121,3 @@ bc_raise (bc_num num1, bc_num num2, bc_num *result, int scale)
121121
}
122122
bc_free_num (&power);
123123
}
124-

ext/bcmath/libbcmath/src/rmzero.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,4 +52,3 @@ _bc_rm_leading_zeros (num)
5252
num->n_len--;
5353
}
5454
}
55-

ext/bcmath/libbcmath/src/sqrt.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,4 +126,3 @@ bc_sqrt (bc_num *num, int scale)
126126
bc_free_num (&diff);
127127
return 1;
128128
}
129-

ext/bcmath/libbcmath/src/str2num.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,4 +109,3 @@ bc_str2num (bc_num *num, char *str, int scale)
109109
if (bc_is_zero (*num))
110110
(*num)->n_sign = PLUS;
111111
}
112-

ext/bcmath/libbcmath/src/sub.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,4 +87,3 @@ bc_sub (n1, n2, result, scale_min)
8787
bc_free_num (result);
8888
*result = diff;
8989
}
90-

ext/bcmath/libbcmath/src/zero.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,4 +61,3 @@ bc_is_zero (bc_num num)
6161
else
6262
return TRUE;
6363
}
64-

ext/calendar/dow.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
/* $selId: dow.c,v 2.0 1995/10/24 01:13:06 lees Exp $
32
* Copyright 1993-1995, Scott E. Lee, all rights reserved.
43
* Permission granted to use, copy, modify, distribute and sell so long as

ext/com_dotnet/com_iterator.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -243,4 +243,3 @@ zend_object_iterator *php_com_iter_get(zend_class_entry *ce, zval *object, int b
243243
}
244244
return NULL;
245245
}
246-

ext/com_dotnet/com_saproxy.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -563,4 +563,3 @@ zend_object_iterator *php_com_saproxy_iter_get(zend_class_entry *ce, zval *objec
563563

564564
return &I->iter;
565565
}
566-

ext/com_dotnet/com_typeinfo.c

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -604,5 +604,3 @@ int php_com_process_typeinfo(ITypeInfo *typeinfo, HashTable *id_to_name, int pri
604604

605605
return ret;
606606
}
607-
608-

ext/com_dotnet/com_variant.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1124,4 +1124,3 @@ PHP_FUNCTION(variant_cast)
11241124
VariantClear(&vres);
11251125
}
11261126
/* }}} */
1127-

ext/com_dotnet/com_wrapper.c

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -645,5 +645,3 @@ PHP_COM_DOTNET_API IDispatch *php_com_wrapper_export(zval *val)
645645

646646
return (IDispatch*)disp;
647647
}
648-
649-

ext/ctype/ctype.xml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -242,4 +242,3 @@ sgml-local-catalogs:nil
242242
sgml-local-ecat-files:nil
243243
End:
244244
-->
245-

ext/curl/tests/server.inc

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,4 +83,3 @@ function curl_cli_server_start() {
8383

8484
return PHP_CURL_SERVER_ADDRESS;
8585
}
86-

ext/dba/CREDITS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
DBA
2-
Sascha Schumann, Marcus Boerger
2+
Sascha Schumann, Marcus Boerger

ext/dba/README

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,4 +51,4 @@ This shows whether your combination of handlers works. Most problematic
5151
are dbm and ndbm which conflict with many installations. The reason for
5252
this is that on several systems these libraries are part of more than one
5353
other library. The configuration test only prevents you from configuring
54-
malfaunctioning single handlers but not combinations.
54+
malfaunctioning single handlers but not combinations.

ext/dba/tests/dba_handler.inc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,4 +95,4 @@ do {
9595
}
9696
} while(1);
9797

98-
?>
98+
?>

0 commit comments

Comments
 (0)