Use LLVM style variable name (NFC)

Fixes variable name from r255779.

llvm-svn: 255824
This commit is contained in:
Teresa Johnson 2015-12-16 21:37:48 +00:00
parent 27161302a0
commit 031bed291e
1 changed files with 4 additions and 4 deletions

View File

@ -75,15 +75,15 @@ struct claimed_file {
/// RAII wrapper to manage opening and releasing of a ld_plugin_input_file.
struct PluginInputFile {
void *handle;
void *Handle;
ld_plugin_input_file File;
PluginInputFile(void *handle) : handle(handle) {
if (get_input_file(handle, &File) != LDPS_OK)
PluginInputFile(void *Handle) : Handle(Handle) {
if (get_input_file(Handle, &File) != LDPS_OK)
message(LDPL_FATAL, "Failed to get file information");
}
~PluginInputFile() {
if (release_input_file(handle) != LDPS_OK)
if (release_input_file(Handle) != LDPS_OK)
message(LDPL_FATAL, "Failed to release file information");
}
ld_plugin_input_file &file() { return File; }