]> sourceware.org Git - systemtap.git/commitdiff
2006-04-10 Martin Hunt <hunt@redhat.com>
authorhunt <hunt>
Tue, 11 Apr 2006 04:27:01 +0000 (04:27 +0000)
committerhunt <hunt>
Tue, 11 Apr 2006 04:27:01 +0000 (04:27 +0000)
* translate.cxx (visit_print_format): Call
_stp_snprintf() instead of snprintf().

ChangeLog
translate.cxx

index 5c356d0db1292f60154ca2ec4d196f06b54fe8d3..c3e05bd6ea439c63f37c02f3237cb3d04eb3d21a 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2006-04-10  Martin Hunt  <hunt@redhat.com>
+
+       * translate.cxx (visit_print_format): Call
+       _stp_snprintf() instead of snprintf().
+
 2006-04-09  Martin Hunt  <hunt@redhat.com>
        Add binary printf support.
        
index d1f4ca6ae4fd09385c0578c525e4dc9267130436..cbdf39f9e7291e6006a6224ec1c7c2b02fe1502c 100644 (file)
@@ -3511,7 +3511,7 @@ c_unparser::visit_print_format (print_format* e)
          o->newline() << "_stp_printf (";
        }
       else
-       o->newline() << "snprintf (" << res.qname() << ", MAXSTRINGLEN, ";
+       o->newline() << "_stp_snprintf (" << res.qname() << ", MAXSTRINGLEN, ";
 
       o->line() << lex_cast_qstring(print_format::components_to_string(components));
 
This page took 0.044441 seconds and 5 git commands to generate.