[Cmake-commits] CMake branch, next, updated. v3.8.0-rc1-487-g6790a78

Brad King brad.king at kitware.com
Thu Feb 23 07:13:16 EST 2017


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "CMake".

The branch, next has been updated
       via  6790a78a1199a40bf1de5bbe6762668d7dd266ab (commit)
       via  dc35291b99827855ee454acc9fc441400121e16e (commit)
      from  7c3dd733d37449045a062f0ecc1c465b06163e58 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=6790a78a1199a40bf1de5bbe6762668d7dd266ab
commit 6790a78a1199a40bf1de5bbe6762668d7dd266ab
Merge: 7c3dd73 dc35291
Author:     Brad King <brad.king at kitware.com>
AuthorDate: Thu Feb 23 07:13:15 2017 -0500
Commit:     CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Thu Feb 23 07:13:15 2017 -0500

    Merge topic 'update-libarchive' into next
    
    dc35291b fixup! libarchive: Avoid using isblank


https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=dc35291b99827855ee454acc9fc441400121e16e
commit dc35291b99827855ee454acc9fc441400121e16e
Author:     Brad King <brad.king at kitware.com>
AuthorDate: Thu Feb 23 07:13:05 2017 -0500
Commit:     Brad King <brad.king at kitware.com>
CommitDate: Thu Feb 23 07:13:05 2017 -0500

    fixup! libarchive: Avoid using isblank

diff --git a/Utilities/cmlibarchive/libarchive/archive_read_support_format_warc.c b/Utilities/cmlibarchive/libarchive/archive_read_support_format_warc.c
index 1e3b518..c3e86c0 100644
--- a/Utilities/cmlibarchive/libarchive/archive_read_support_format_warc.c
+++ b/Utilities/cmlibarchive/libarchive/archive_read_support_format_warc.c
@@ -532,7 +532,7 @@ time_from_tm(struct tm *t)
 }
 
 static int la_isblank(int c) {
-  return c == ' ' || c == '\t';
+	return c == ' ' || c == '\t';
 }
 
 static time_t

-----------------------------------------------------------------------

Summary of changes:
 Utilities/cmlibarchive/libarchive/archive_read_support_format_warc.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


hooks/post-receive
-- 
CMake


More information about the Cmake-commits mailing list