diff options
author | Phil Pritchett <p.pritchett@2d3.com> | 2001-11-05 10:43:48 (GMT) |
---|---|---|
committer | Phil Pritchett <p.pritchett@2d3.com> | 2001-11-05 10:43:48 (GMT) |
commit | 847633097915ea18cc15f4886dbfc0a8df43d359 (patch) | |
tree | 9bf91b6fe3658dc4d610ed1f079ea7fd0fbfa8c2 /Source/cmDSWWriter.cxx | |
parent | d0b210aec0939dbd6054b5d754446226dd55ef18 (diff) | |
download | CMake-847633097915ea18cc15f4886dbfc0a8df43d359.zip CMake-847633097915ea18cc15f4886dbfc0a8df43d359.tar.gz CMake-847633097915ea18cc15f4886dbfc0a8df43d359.tar.bz2 |
switched string::compare to strncmp
Diffstat (limited to 'Source/cmDSWWriter.cxx')
-rw-r--r-- | Source/cmDSWWriter.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmDSWWriter.cxx b/Source/cmDSWWriter.cxx index d86ba2a..6f7da03 100644 --- a/Source/cmDSWWriter.cxx +++ b/Source/cmDSWWriter.cxx @@ -172,7 +172,7 @@ void cmDSWWriter::WriteDSWFile(std::ostream& fout) } } // Write the project into the DSW file - if (l->first.compare(0,26, "INCLUDE_EXTERNAL_MSPROJECT") == 0) + if (strncmp(l->first.c_str(), "INCLUDE_EXTERNAL_MSPROJECT", 26) == 0) { cmCustomCommand cc = l->second.GetCustomCommands()[0]; |