diff options
Diffstat (limited to '010vm.cc')
-rw-r--r-- | 010vm.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/010vm.cc b/010vm.cc index 9cec18d2..d773fe01 100644 --- a/010vm.cc +++ b/010vm.cc @@ -592,7 +592,7 @@ void skip_whitespace_but_not_newline(istream& in) { void dump_memory() { for (map<int, double>::iterator p = Memory.begin(); p != Memory.end(); ++p) { - cout << p->first << ": " << no_scientific(p->second) << '\n'; + cerr << p->first << ": " << no_scientific(p->second) << '\n'; } } |