1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

Merge pull request #109 from mehlis/removed-semicolons

remove superfluous semicolons
This commit is contained in:
Oleg Hahm 2013-08-09 02:01:12 -07:00
commit 6d95d8a4ba
2 changed files with 2 additions and 2 deletions

View File

@ -80,7 +80,7 @@ typedef struct {
typedef struct {
transceiver_type_t transceivers;
void *data;
} transceiver_command_t;;
} transceiver_command_t;
/* The transceiver thread's pid */
extern int transceiver_pid;

View File

@ -32,7 +32,7 @@ static inline unsigned int
indexFor(unsigned int tablelength, unsigned int hashvalue)
{
return (hashvalue % tablelength);
};
}
/* Only works if tablelength == 2^N */
/*static inline unsigned int