use dstring_new instead of dstring_newstr to avoid allocating memory that's

only going to be reallocated immediatly anyway.
This commit is contained in:
Bill Currie 2002-04-15 22:24:47 +00:00
parent 55a5c39187
commit 313c82efef

View file

@ -1164,7 +1164,7 @@ main (int argc, char **argv)
DecodeArgs (argc, argv);
#ifdef USE_CPP
tempname = dstring_newstr ();
tempname = dstring_new ();
parse_cpp_name ();
#endif