Page MenuHomeFreeBSD

vmm: Fix ivrs_drv device_printf usage
ClosedPublic

Authored by khng on Jun 17 2021, 6:11 PM.
Tags
None
Referenced Files
Unknown Object (File)
Feb 6 2024, 4:39 AM
Unknown Object (File)
Dec 22 2023, 11:47 PM
Unknown Object (File)
Dec 19 2023, 12:05 PM
Unknown Object (File)
Dec 12 2023, 2:26 AM
Unknown Object (File)
Dec 3 2023, 7:33 AM
Unknown Object (File)
Sep 24 2023, 2:49 AM
Unknown Object (File)
Sep 6 2023, 8:51 AM
Unknown Object (File)
Aug 16 2023, 8:19 AM

Details

Summary

The original %b description string is wrong.

Sponsored by: The FreeBSD Foundation

Diff Detail

Repository
rS FreeBSD src repository - subversion
Lint
Lint Passed
Unit
No Test Coverage
Build Status
Buildable 39958
Build 36847: arc lint + arc unit

Event Timeline

khng requested review of this revision.Jun 17 2021, 6:11 PM
This revision is now accepted and ready to land.Jun 17 2021, 9:31 PM

Wait, how did this compile exactly? Does it stop at the first invalid character so that '\008' becomes '\0' and '8'?

In D30805#692800, @jhb wrote:

Wait, how did this compile exactly? Does it stop at the first invalid character so that '\008' becomes '\0' and '8'?

\0 and a bit name that starts with a number is legal, but not the expected results

This revision was automatically updated to reflect the committed changes.