diff options
| author | Bertrik Sikken <bertrik@sikken.nl> | 2011-05-08 20:35:29 +0000 |
|---|---|---|
| committer | Bertrik Sikken <bertrik@sikken.nl> | 2011-05-08 20:35:29 +0000 |
| commit | ab99e941dbf0481a1c0abb3767a745d23b53bfd2 (patch) | |
| tree | c29f29102cb45ea7b1e474e979cd7b1bf38f1015 /apps/bookmark.c | |
| parent | d68d02ec115d464e40ee70fa117d0a43158c9376 (diff) | |
| download | rockbox-ab99e941dbf0481a1c0abb3767a745d23b53bfd2.zip rockbox-ab99e941dbf0481a1c0abb3767a745d23b53bfd2.tar.gz rockbox-ab99e941dbf0481a1c0abb3767a745d23b53bfd2.tar.bz2 rockbox-ab99e941dbf0481a1c0abb3767a745d23b53bfd2.tar.xz | |
More tab fixes
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29840 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/bookmark.c')
| -rw-r--r-- | apps/bookmark.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/apps/bookmark.c b/apps/bookmark.c index 8de0699..28aecb4 100644 --- a/apps/bookmark.c +++ b/apps/bookmark.c @@ -951,17 +951,17 @@ static const char* skip_token(const char* s) return s; } -static const char* int_token(const char* s, int* dest) -{ +static const char* int_token(const char* s, int* dest) +{ *dest = atoi(s); - return skip_token(s); -} + return skip_token(s); +} -static const char* long_token(const char* s, long* dest) -{ +static const char* long_token(const char* s, long* dest) +{ *dest = atoi(s); /* Should be atol, but we don't have it. */ - return skip_token(s); -} + return skip_token(s); +} /* ----------------------------------------------------------------------- */ /* This function takes a bookmark and parses it. This function also */ |