From b393f6f2f69d4ebf9d210308d251bc67ad6487b3 Mon Sep 17 00:00:00 2001 From: Josh Stone Date: Wed, 14 Oct 2009 16:12:49 -0700 Subject: Fix $$targets in dwarf probes My print_format refactoring in d5e178c1 missed an improperly-named token, an sprint that should be sprintf. Since the token value is now significant, that name needs to be correct. --- tapsets.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tapsets.cxx') diff --git a/tapsets.cxx b/tapsets.cxx index ba6f4ee4..113395e3 100644 --- a/tapsets.cxx +++ b/tapsets.cxx @@ -2145,7 +2145,7 @@ dwarf_var_expanding_visitor::visit_target_symbol_context (target_symbol* e) token* pf_tok = new token; pf_tok->location = e->tok->location; pf_tok->type = tok_identifier; - pf_tok->content = "sprint"; + pf_tok->content = "sprintf"; print_format* pf = print_format::create(pf_tok); -- cgit