diff options
author | Junghyun Kim <jh0822.kim@samsung.com> | 2016-10-11 19:17:59 +0900 |
---|---|---|
committer | SoonKyu Park <sk7.park@samsung.com> | 2018-04-03 11:28:16 +0900 |
commit | 0146bdbef71121a8ac61c75fead9de42049ff9a2 (patch) | |
tree | 98a1b975397bfa13ccaa26699d9ecf0d61acb39b | |
parent | 814fe929db909dafdd28e81d4fade1bd4005e3fc (diff) | |
download | cmake-0146bdbef71121a8ac61c75fead9de42049ff9a2.tar.gz cmake-0146bdbef71121a8ac61c75fead9de42049ff9a2.tar.bz2 cmake-0146bdbef71121a8ac61c75fead9de42049ff9a2.zip |
Remove unnecessary log messages.
Change-Id: Ib216a5e593ddf5a7c8fe1f3f39e7a559387d0edb
Signed-off-by: Junghyun Kim <jh0822.kim@samsung.com>
-rw-r--r-- | Source/kwsys/Directory.cxx | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Source/kwsys/Directory.cxx b/Source/kwsys/Directory.cxx index 804990992..f6f82454d 100644 --- a/Source/kwsys/Directory.cxx +++ b/Source/kwsys/Directory.cxx @@ -207,8 +207,6 @@ bool Directory::Load(const std::string& name) int num_entries = scandir(name, &namelist, NULL, alphasort); if(num_entries == -1) { - printf("name=%s\n", name); - perror("scandir"); return 0; } |