diff options
author | Robert Relyea <rrelyea@redhat.com> | 2021-02-25 13:52:59 -0800 |
---|---|---|
committer | Robert Relyea <rrelyea@redhat.com> | 2021-02-25 13:52:59 -0800 |
commit | 5dfc945870f644aa1b59371e490d03676ff09ab6 (patch) | |
tree | 2eda79ecb142081d86f064d5fd49610874e9a88c /lib | |
parent | 4563dbca67fe227eacfe81702e90a76bbddbea1c (diff) | |
download | nss-hg-5dfc945870f644aa1b59371e490d03676ff09ab6.tar.gz |
Fix clang failure.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/pk11wrap/pk11slot.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pk11wrap/pk11slot.c b/lib/pk11wrap/pk11slot.c index d64e2a10d..2f805431d 100644 --- a/lib/pk11wrap/pk11slot.c +++ b/lib/pk11wrap/pk11slot.c @@ -1371,7 +1371,7 @@ PK11_InitToken(PK11SlotInfo *slot, PRBool loadCerts) /* Not all tokens have profile objects or even recognize what profile * objects are it's OK for pk11_ReadProfileList to fail */ - (void) pk11_ReadProfileList(slot); + (void)pk11_ReadProfileList(slot); if (!(slot->isInternal) && (slot->hasRandom)) { /* if this slot has a random number generater, use it to add entropy |