Skip to content

Commit

Permalink
Maintenance: fix indent in unixpwd
Browse files Browse the repository at this point in the history
Signed-off-by: Edwin Török <edvin.torok@citrix.com>
  • Loading branch information
edwintorok committed Jun 25, 2021
1 parent cad1215 commit 90da135
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions unixpwd/c/unixpwd_stubs.c
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ CAMLprim value
caml_unixpwd_getpwd(value caml_user)
{
CAMLparam1(caml_user);
const char *user;
const char *user;
char *passwd;
CAMLlocal1(pw);

Expand All @@ -48,7 +48,7 @@ CAMLprim value
caml_unixpwd_getspw(value caml_user)
{
CAMLparam1(caml_user);
const char *user;
const char *user;
char *passwd;
CAMLlocal1(pw);

Expand All @@ -70,7 +70,7 @@ CAMLprim value
caml_unixpwd_get(value caml_user)
{
CAMLparam1(caml_user);
const char *user;
const char *user;
char *passwd;
CAMLlocal1(pw);

Expand Down

0 comments on commit 90da135

Please sign in to comment.