Skip to content
This repository has been archived by the owner on Sep 12, 2018. It is now read-only.

Commit

Permalink
Align =
Browse files Browse the repository at this point in the history
  • Loading branch information
Scott Olson committed Apr 4, 2012
1 parent f3d838b commit 98d7e94
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/bot.c
Expand Up @@ -15,11 +15,11 @@ bot *bot_new(const char *nick, const char *username, const char *realname,
const char *hostname, const char *port) {
bot *b = talloc(NULL, bot);

b->nick = talloc_strdup(b, nick);
b->nick = talloc_strdup(b, nick);
b->username = talloc_strdup(b, username);
b->realname = talloc_strdup(b, realname);
b->hostname = talloc_strdup(b, hostname);
b->port = talloc_strdup(b, port);
b->port = talloc_strdup(b, port);

return b;
}
Expand Down

0 comments on commit 98d7e94

Please sign in to comment.