Browse Source

Fix misspellings.

master
Alessio Treglia 12 years ago
parent
commit
0e27ba02c9
2 changed files with 3 additions and 3 deletions
  1. +1
    -1
      Makefile
  2. +2
    -2
      src/pad.c

+ 1
- 1
Makefile View File

@ -1,4 +1,4 @@
# Set to 'yes' to include debugging informations, e.g. DEBUG=yes make -e
# Set to 'yes' to include debugging information, e.g. DEBUG=yes make -e
DEBUG := no
PREFIX ?= /usr


+ 2
- 2
src/pad.c View File

@ -73,7 +73,7 @@ static FILE *pusb_pad_open_system(t_pusb_options *opts,
if (!(user_ent = getpwnam(user)) || !(user_ent->pw_dir))
{
log_error("Unable to retrieve informations for user \"%s\": %s\n",
log_error("Unable to retrieve information for user \"%s\": %s\n",
strerror(errno));
return (0);
}
@ -111,7 +111,7 @@ static int pusb_pad_protect(const char *user, int fd)
log_debug("Protecting pad file...\n");
if (!(user_ent = getpwnam(user)))
{
log_error("Unable to retrieve informations for user \"%s\": %s\n",
log_error("Unable to retrieve information for user \"%s\": %s\n",
strerror(errno));
return (0);
}


Loading…
Cancel
Save