Skip to content

Commit

Permalink
Merge pull request #11000 from pao/topic/quote-using-warning
Browse files Browse the repository at this point in the history
using warning: set off method name only
  • Loading branch information
JeffBezanson committed Apr 25, 2015
2 parents f2e3d33 + d1ed2ac commit 54d8cc7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/module.c
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ static jl_binding_t *jl_get_binding_(jl_module_t *m, jl_sym_t *var, modstack_t *
if (owner != NULL && tempb->owner != b->owner &&
!(tempb->constp && tempb->value && b->constp && b->value == tempb->value)) {
jl_printf(JL_STDERR,
"Warning: both `%s` and `%s` export `%s`; uses of it in module `%s` must be qualified\n",
"Warning: both %s and %s export \"%s\"; uses of it in module %s must be qualified\n",
owner->name->name, imp->name->name, var->name, m->name->name);
// mark this binding resolved, to avoid repeating the warning
(void)jl_get_binding_wr(m, var);
Expand Down

0 comments on commit 54d8cc7

Please sign in to comment.