From: slack Date: Mon, 19 Jan 2009 18:07:25 +0000 (+0100) Subject: fixed tab/space mismatch in wendi/wendi.cc X-Git-Url: http://slack.codemaniacs.com/git/?a=commitdiff_plain;h=0b32090ae5c3e4ef39ed4c754fca845882e9ab21;p=wenboi.git fixed tab/space mismatch in wendi/wendi.cc --- diff --git a/wendi/wendi.cc b/wendi/wendi.cc index 52369a6..78b87c9 100644 --- a/wendi/wendi.cc +++ b/wendi/wendi.cc @@ -372,8 +372,8 @@ int main(int argc, char **argv) std::ofstream graph_stream((std::string(argv[1])+".dot").c_str()); std::ofstream txt_stream((std::string(argv[1])+".txt").c_str()); - GraphDisassemblyOutput graph(graph_stream); - TextDisassemblyOutput text(txt_stream); + GraphDisassemblyOutput graph(graph_stream); + TextDisassemblyOutput text(txt_stream); graph.generate_output(gb, tmp); text.generate_output(gb, tmp);