npm

Nihal's Password Manager
git clone git://git.nihaljere.xyz/npm
Log | Files | Refs | README | LICENSE

commit 5ad257ab769a3b22419087f1490c87b8a2d298d7
parent 7832845f15332a8e0533f26948258d8d5de6c428
Author: Nihal Jere <nihal@nihaljere.xyz>
Date:   Thu,  9 Dec 2021 11:07:56 -0600

remove extra spaces

Diffstat:
Mnpm-core.c | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/npm-core.c b/npm-core.c @@ -75,17 +75,17 @@ int main(int argc, char *argv[]) /* we want to prevent secret data from being swapped to disk */ if (mlock(plain, sizeof(plain)) < 0) { - perror( "mlock failed"); + perror("mlock failed"); goto fail; } if (mlock(master, sizeof(master)) < 0) { - perror( "mlock failed"); + perror("mlock failed"); goto fail; } if (mlock(key, sizeof(key)) < 0) { - perror( "mlock failed"); + perror("mlock failed"); goto fail; }