git: ca1c1eceb38c - main - sys/limits.h: Fix typo
Faraz Vahedi <[email protected]>
| Newsgroups | gmane.os.freebsd.devel.cvs.src,gmane.os.freebsd.current.scm |
|---|---|
| Message-ID | <[email protected]> |
The branch main has been updated by kfv: URL: https://cgit.FreeBSD.org/src/commit/?id=ca1c1eceb38c57ce7439786008f7c6f37c9a62d3 commit ca1c1eceb38c57ce7439786008f7c6f37c9a62d3 Author: Faraz Vahedi <[email protected]> AuthorDate: 2026-08-04 12:47:39 +0000 Commit: Faraz Vahedi <[email protected]> CommitDate: 2026-08-13 09:41:37 +0000 sys/limits.h: Fix typo Reviewed by: fuz Approved by: fuz (mentor) MFC after: 1 month Pull Request: https://github.com/freebsd/freebsd-src/pull/2352 --- sys/powerpc/include/_limits.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/powerpc/include/_limits.h b/sys/powerpc/include/_limits.h index cae389ef0f36..bdd478e54a0f 100644 --- a/sys/powerpc/include/_limits.h +++ b/sys/powerpc/include/_limits.h @@ -42,7 +42,7 @@ */ #define __CHAR_BIT 8 /* number of bits in a char */ -#define __SHRT_BIT 16 /* number of bits in an short */ +#define __SHRT_BIT 16 /* number of bits in a short */ #define __INT_BIT 32 /* number of bits in an int */ #define __LLONG_BIT 64 /* number of bits in a long long */