summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornate <nate@FreeBSD.org>1997-01-06 06:09:13 +0000
committernate <nate@FreeBSD.org>1997-01-06 06:09:13 +0000
commitff784c16c3efa367716345cae4757260b38ead4d (patch)
treecd6b7f33b2a5bc0a786f78b3292eda786e7a3a20
parent11d26897a2af3db21563cafdf547d2cff0ddddb5 (diff)
downloadFreeBSD-src-ff784c16c3efa367716345cae4757260b38ead4d.zip
FreeBSD-src-ff784c16c3efa367716345cae4757260b38ead4d.tar.gz
Remove an un-needed static declaration.
-rw-r--r--usr.sbin/apm/apm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/apm/apm.c b/usr.sbin/apm/apm.c
index b21f6b1..442bbee 100644
--- a/usr.sbin/apm/apm.c
+++ b/usr.sbin/apm/apm.c
@@ -61,7 +61,7 @@ print_all_info(apm_info_t aip)
else if (aip->ai_acline > 1)
printf("invalid value (0x%x)", aip->ai_acline);
else {
- static char messages[][10] = {"off-line", "on-line"};
+ char messages[][10] = {"off-line", "on-line"};
printf("%s", messages[aip->ai_acline]);
}
printf("\n");
OpenPOWER on IntegriCloud