summaryrefslogtreecommitdiff
path: root/tools/preproc/asm_file.cpp
diff options
context:
space:
mode:
authorYamaArashi <YamaArashi@users.noreply.github.com>2017-02-03 21:25:20 -0800
committerGitHub <noreply@github.com>2017-02-03 21:25:20 -0800
commit27dc855202a2531914c83d15d5a9c3745c0ca88a (patch)
treefb04b6228467ef4f78fed680d7dfae1c4a55ad95 /tools/preproc/asm_file.cpp
parent18e21f8b090a49934a80d56b1796e0c1d469a22c (diff)
parent7c96b16179792a044ded6ade1b74cdb1c0b870a5 (diff)
Merge pull request #230 from camthesaxman/tools
use std:: prefix and remove some unused functions
Diffstat (limited to 'tools/preproc/asm_file.cpp')
-rw-r--r--tools/preproc/asm_file.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/preproc/asm_file.cpp b/tools/preproc/asm_file.cpp
index 49c9e3c66..bb296b78b 100644
--- a/tools/preproc/asm_file.cpp
+++ b/tools/preproc/asm_file.cpp
@@ -494,7 +494,7 @@ bool AsmFile::IsAtEnd()
// Output the current location to set gas's logical file and line numbers.
void AsmFile::OutputLocation()
{
- printf("# %ld \"%s\"\n", m_lineNum, m_filename.c_str());
+ std::printf("# %ld \"%s\"\n", m_lineNum, m_filename.c_str());
}
// Reports a diagnostic message.