Skip to content
Snippets Groups Projects
Commit 6d95d8a4 authored by Oleg Hahm's avatar Oleg Hahm
Browse files

Merge pull request #109 from mehlis/removed-semicolons

remove superfluous semicolons
parents 6a91dcd3 1f8a80b6
No related branches found
No related tags found
No related merge requests found
...@@ -80,7 +80,7 @@ typedef struct { ...@@ -80,7 +80,7 @@ typedef struct {
typedef struct { typedef struct {
transceiver_type_t transceivers; transceiver_type_t transceivers;
void *data; void *data;
} transceiver_command_t;; } transceiver_command_t;
/* The transceiver thread's pid */ /* The transceiver thread's pid */
extern int transceiver_pid; extern int transceiver_pid;
......
...@@ -32,7 +32,7 @@ static inline unsigned int ...@@ -32,7 +32,7 @@ static inline unsigned int
indexFor(unsigned int tablelength, unsigned int hashvalue) indexFor(unsigned int tablelength, unsigned int hashvalue)
{ {
return (hashvalue % tablelength); return (hashvalue % tablelength);
}; }
/* Only works if tablelength == 2^N */ /* Only works if tablelength == 2^N */
/*static inline unsigned int /*static inline unsigned int
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment