Skip to content

Commit 27c879d

Browse files
committed
Trim trailing whitespace in source code files
1 parent cd16978 commit 27c879d

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

config.m4

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ if test "$PHP_INTERBASE" != "no"; then
4646
], [
4747
-L$IBASE_LIBDIR
4848
])
49-
49+
5050
PHP_ADD_LIBRARY_WITH_PATH($IBASE_LIBNAME, $IBASE_LIBDIR, INTERBASE_SHARED_LIBADD)
5151
PHP_ADD_INCLUDE($IBASE_INCDIR)
5252
fi

config.w32

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ ARG_WITH("interbase", "InterBase support", "no");
44

55
if (PHP_INTERBASE != "no") {
66

7-
if (CHECK_HEADER_ADD_INCLUDE("ibase.h", "CFLAGS_INTERBASE",
7+
if (CHECK_HEADER_ADD_INCLUDE("ibase.h", "CFLAGS_INTERBASE",
88
PHP_PHP_BUILD + "\\include\\interbase;" + PHP_PHP_BUILD + "\\interbase\\include;" + PHP_INTERBASE) &&
99
(CHECK_LIB("fbclient_ms.lib", "interbase", PHP_PHP_BUILD + "\\interbase\\lib_ms;" + PHP_INTERBASE) ||
1010
CHECK_LIB("gds32_ms.lib", "interbase", PHP_PHP_BUILD + "\\interbase\\lib_ms;" + PHP_INTERBASE))) {

tests/interbase.inc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ function init_db()
1414
{
1515
global $test_base, $user, $password;
1616

17-
$test_db = ibase_query(IBASE_CREATE,
17+
$test_db = ibase_query(IBASE_CREATE,
1818
sprintf("CREATE SCHEMA '%s' USER '%s' PASSWORD '%s' DEFAULT CHARACTER SET %s",$test_base,
1919
$user, $password, ($charset = ini_get('ibase.default_charset')) ? $charset : 'NONE'));
2020
$tr = ibase_trans($test_db);
@@ -28,7 +28,7 @@ function init_db()
2828
function cleanup_db()
2929
{
3030
global $test_base;
31-
31+
3232
$r = ibase_connect($test_base);
3333
ibase_drop_db($r);
3434
}

tests/skipif.inc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
if (!extension_loaded("interbase")) print "skip interbase extension not available";
3+
if (!extension_loaded("interbase")) print "skip interbase extension not available";
44
require("interbase.inc");
55
if(!@ibase_connect($test_base)){
66
die("skip cannot connnect");

0 commit comments

Comments
 (0)