diff options
Diffstat (limited to 'src/parser.rs')
-rw-r--r-- | src/parser.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/parser.rs b/src/parser.rs index a5c5bc51..600b14a7 100644 --- a/src/parser.rs +++ b/src/parser.rs @@ -552,8 +552,8 @@ fn visit_composite(cursor: &Cursor, parent: &Cursor, match ty { il::TInt(_, _) => (), _ => { - let msg = format!("Enums in bitfields are not supported ({}.{}).", - cursor.spelling(), parent.spelling()); + let msg = format!("Enums in bitfields are not supported ({}::{}).", + parent.spelling(), cursor.spelling()); ctx.logger.warn(&msg); } } |