Index: subversion/include/svn_fs.h
===================================================================
--- subversion/include/SVN/text-base/svn_fs.h	Mon Sep 10 23:11:10 2001
+++ subversion/include/svn_fs.h	Fri Sep 14 17:35:36 2001
@@ -1048,7 +1048,7 @@
    from those at PATH2 under ROOT2, or set it to 0 if they are the
    same.  Both paths must exist under their respective roots, and both
    roots must be in the same filesystem.  */
-svn_error_t *svn_fs_contents_changed (int *changed_p,
+svn_error_t *svn_fs_contents_changed (svn_boolean_t *changed_p,
                                       svn_fs_root_t *root1,
                                       const char *path1,
                                       svn_fs_root_t *root2,
Index: subversion/libsvn_repos/delta.c
===================================================================
--- subversion/libsvn_repos/SVN/text-base/delta.c	Mon Sep 17 19:39:46 2001
+++ subversion/libsvn_repos/delta.c	Mon Sep 17 19:39:46 2001
@@ -560,7 +560,7 @@
 
   if (source_path)
     {
-      int changed;
+      svn_boolean_t changed;
 
       /* Is this deltification worth our time? */
       SVN_ERR (svn_fs_contents_changed (&changed,
Index: subversion/libsvn_fs/tree.c
===================================================================
--- subversion/libsvn_fs/SVN/text-base/tree.c	Mon Sep 10 23:10:43 2001
+++ subversion/libsvn_fs/tree.c	Mon Sep 17 19:58:35 2001
@@ -2598,7 +2598,7 @@
 
 
 svn_error_t *
-svn_fs_contents_changed (int *changed_p,
+svn_fs_contents_changed (svn_boolean_t *changed_p,
                          svn_fs_root_t *root1,
                          const char *path1,
                          svn_fs_root_t *root2,


