Skip to content

Commit 0086899

Browse files
authored
Merge pull request xapi-project#4450 from xapi-project/private/edvint/indent
Maintenance: fix indent in unixpwd
2 parents cad1215 + 90da135 commit 0086899

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

unixpwd/c/unixpwd_stubs.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ CAMLprim value
2828
caml_unixpwd_getpwd(value caml_user)
2929
{
3030
CAMLparam1(caml_user);
31-
const char *user;
31+
const char *user;
3232
char *passwd;
3333
CAMLlocal1(pw);
3434

@@ -48,7 +48,7 @@ CAMLprim value
4848
caml_unixpwd_getspw(value caml_user)
4949
{
5050
CAMLparam1(caml_user);
51-
const char *user;
51+
const char *user;
5252
char *passwd;
5353
CAMLlocal1(pw);
5454

@@ -70,7 +70,7 @@ CAMLprim value
7070
caml_unixpwd_get(value caml_user)
7171
{
7272
CAMLparam1(caml_user);
73-
const char *user;
73+
const char *user;
7474
char *passwd;
7575
CAMLlocal1(pw);
7676

0 commit comments

Comments
 (0)