[llvm-commits] CVS: llvm/projects/Stacker/tools/stkrc/stkrc.cpp
Reid Spencer
reid at x10sys.com
Sun Nov 14 14:13:04 PST 2004
Changes in directory llvm/projects/Stacker/tools/stkrc:
stkrc.cpp updated: 1.7 -> 1.8
---
Log message:
Fix usage of changed function prototype
---
Diffs of the changes: (+1 -1)
Index: llvm/projects/Stacker/tools/stkrc/stkrc.cpp
diff -u llvm/projects/Stacker/tools/stkrc/stkrc.cpp:1.7 llvm/projects/Stacker/tools/stkrc/stkrc.cpp:1.8
--- llvm/projects/Stacker/tools/stkrc/stkrc.cpp:1.7 Sat Sep 4 14:05:53 2004
+++ llvm/projects/Stacker/tools/stkrc/stkrc.cpp Sun Nov 14 16:12:27 2004
@@ -155,7 +155,7 @@
Out = new std::ofstream(OutputFilename.c_str());
// Make sure that the Out file gets unlinked from the disk if we get a
// SIGINT
- sys::RemoveFileOnSignal(OutputFilename);
+ sys::RemoveFileOnSignal(sys::Path(OutputFilename));
}
}
More information about the llvm-commits
mailing list