Warning fix: cpp hates apostrophes

The compiler complains when the text in a #warning contains a
single apostrophe:
   error: missing terminating ' character

Change the text to avoid it.

Change-Id: Ibf1f4d2cb922b313545ed228a2a8d4eb6b134178
Reviewed-on: http://gerrit.openafs.org/1877
Reviewed-by: Derrick Brashear <shadow@dementia.org>
Tested-by: Derrick Brashear <shadow@dementia.org>
This commit is contained in:
Marc Dionne 2010-04-28 19:07:32 -04:00 committed by Derrick Brashear
parent 94c15f62d3
commit a1cbbccce3

View File

@ -558,7 +558,7 @@ osi_get_group_pag(afs_ucred_t *cred)
ngroups = crgetngroups(cred);
#endif
#if defined(AFS_NBSD40_ENV)
#warning com afs_ucred_t w/magic won't work
#warning com afs_ucred_t w/magic will not work
if (cred == NOCRED || cred == FSCRED)
return NOPAG;
if (osi_crngroups(cred) < 3)