Skip to content

Commit

Permalink
fix bug #6893 - correct types for strict compilers
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.php.net/repository/pecl/svn/trunk@209689 c90b9560-bf6c-de11-be94-00142212c4b1
  • Loading branch information
roojs committed Mar 20, 2006
1 parent 25b53c2 commit 300fbe2
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions svn.c
Expand Up @@ -36,6 +36,7 @@
#include "svn_path.h"
#include "svn_fs.h"
#include "svn_repos.h"
#include "svn_utf.h"

/* If you declare any globals in php_svn.h uncomment this: */
ZEND_DECLARE_MODULE_GLOBALS(svn)
Expand Down Expand Up @@ -778,7 +779,7 @@ php_svn_log_message_receiver ( void *baton,

PHP_FUNCTION(svn_log)
{
char *repos_url = NULL, *utf8_repos_url = NULL;
const char *repos_url = NULL, *utf8_repos_url = NULL;
int repos_url_len;
int revision = -2;
svn_error_t *err;
Expand Down Expand Up @@ -1942,7 +1943,7 @@ PHP_FUNCTION(svn_repos_fs_commit_txn)
{
zval *ztxn;
struct php_svn_repos_fs_txn *txn;
char *conflicts;
const char *conflicts;
svn_revnum_t new_rev;
svn_error_t *err;

Expand Down

0 comments on commit 300fbe2

Please sign in to comment.