Commit d7d4cd78 by Andreas Jaeger Committed by Andreas Jaeger

* toplev.c (default_pch_valid_p): Fix warning.

From-SVN: r72945
parent 12afcb31
2003-10-26 Andreas Jaeger <aj@suse.de>
* toplev.c (default_pch_valid_p): Fix warning.
2003-10-25 Roger Sayle <roger@eyesopen.com>
* simplify-rtx.c (simplify_replace_rtx): Avoid allocating duplicate
......
......@@ -4203,7 +4203,7 @@ default_pch_valid_p (const void *data_p, size_t len)
asprintf (&r, _("created and used with differing settings of `-m%s'"),
flag_that_differs);
if (r == NULL)
r = _("out of memory");
return _("out of memory");
return r;
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment