Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 255479
b: refs/heads/master
c: e72948e
h: refs/heads/master
i:
  255477: a30217d
  255475: cc686b2
  255471: e57fd8b
v: v3
  • Loading branch information
Sven Eckelmann committed Jun 9, 2011
1 parent 72e9ad3 commit e618da5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 6b9aadfa97efa5a73c005c5c4c667359a0c85bec
refs/heads/master: e72948eb21d1da0275be1c6e0c7a9a22aa67a5e3
4 changes: 2 additions & 2 deletions trunk/net/batman-adv/gateway_common.c
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ static bool parse_gw_bandwidth(struct net_device *net_dev, char *buff,
*tmp_ptr = '\0';
}

ret = strict_strtoul(buff, 10, &ldown);
ret = strict_strtol(buff, 10, &ldown);
if (ret) {
bat_err(net_dev,
"Download speed of gateway mode invalid: %s\n",
Expand All @@ -122,7 +122,7 @@ static bool parse_gw_bandwidth(struct net_device *net_dev, char *buff,
*tmp_ptr = '\0';
}

ret = strict_strtoul(slash_ptr + 1, 10, &lup);
ret = strict_strtol(slash_ptr + 1, 10, &lup);
if (ret) {
bat_err(net_dev,
"Upload speed of gateway mode invalid: "
Expand Down

0 comments on commit e618da5

Please sign in to comment.