diff options
author | pfg <pfg@FreeBSD.org> | 2016-05-01 19:37:33 +0000 |
---|---|---|
committer | pfg <pfg@FreeBSD.org> | 2016-05-01 19:37:33 +0000 |
commit | 9e7434b2c5c2ce4f2a9aa3e84de3e7cf33a910d5 (patch) | |
tree | 0915c4e45d9b930a70f4e5e0d87c272630e6ade2 /lib/libpmc/libpmc.c | |
parent | b40040b0194300dfa5b68ecd084dde2ce667c9bc (diff) | |
download | FreeBSD-src-9e7434b2c5c2ce4f2a9aa3e84de3e7cf33a910d5.zip FreeBSD-src-9e7434b2c5c2ce4f2a9aa3e84de3e7cf33a910d5.tar.gz |
lib: minor spelling fixes in comments.
No functional change.
Diffstat (limited to 'lib/libpmc/libpmc.c')
-rw-r--r-- | lib/libpmc/libpmc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libpmc/libpmc.c b/lib/libpmc/libpmc.c index 39deec6..0e54b68 100644 --- a/lib/libpmc/libpmc.c +++ b/lib/libpmc/libpmc.c @@ -3240,7 +3240,7 @@ pmc_init(void) if (PMC_CALL(GETMODULEVERSION, &abi_version) < 0) return (pmc_syscall = -1); - /* ignore patch & minor numbers for the comparision */ + /* ignore patch & minor numbers for the comparison */ if ((abi_version & 0xFF000000) != (PMC_VERSION & 0xFF000000)) { errno = EPROGMISMATCH; return (pmc_syscall = -1); |