Page MenuHomeFreeBSD

sound: Use nitems() where possible
ClosedPublic

Authored by christos on Apr 29 2024, 4:22 PM.
Tags
None
Referenced Files
Unknown Object (File)
Tue, Apr 15, 11:03 PM
Unknown Object (File)
Tue, Apr 15, 4:50 PM
Unknown Object (File)
Feb 21 2025, 10:42 PM
Unknown Object (File)
Feb 6 2025, 3:41 AM
Unknown Object (File)
Jan 23 2025, 6:40 PM
Unknown Object (File)
Jan 23 2025, 6:31 PM
Unknown Object (File)
Dec 24 2024, 5:18 PM
Unknown Object (File)
Dec 23 2024, 2:04 PM
Subscribers

Details

Summary

No functional change intended.

Sponsored by: The FreeBSD Foundation
MFC after: 1 week

Diff Detail

Repository
rG FreeBSD src repository
Lint
Lint Skipped
Unit
Tests Skipped
Build Status
Buildable 57449
Build 54337: arc lint + arc unit

Event Timeline

emaste added inline comments.
sys/dev/sound/pcm/feeder_format.c
124

this could be updated to size_t while here

276

and here

289

and here

This revision is now accepted and ready to land.Apr 29 2024, 5:12 PM

Indeed, it's nicer to use unsigned types (unsigned int or size_t) for comparisons with nitems().

This revision was automatically updated to reflect the committed changes.