mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-14 18:48:13 -07:00
stricter warnings, wip
This commit is contained in:
parent
0cb21c89c3
commit
0e39cb8e34
11 changed files with 20 additions and 16 deletions
|
@ -5,14 +5,14 @@
|
|||
* it under the terms of the MIT license. See LICENSE for details.
|
||||
*/
|
||||
|
||||
#if HAVE_CONFIG_H
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <jansson_private_config.h>
|
||||
#endif
|
||||
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
|
||||
#if HAVE_STDINT_H
|
||||
#ifdef HAVE_STDINT_H
|
||||
#include <stdint.h>
|
||||
#endif
|
||||
|
||||
|
|
|
@ -162,7 +162,7 @@ static int seed_from_timestamp_and_pid(uint32_t *seed) {
|
|||
return 0;
|
||||
}
|
||||
|
||||
static uint32_t generate_seed() {
|
||||
static uint32_t generate_seed(void) {
|
||||
uint32_t seed = 0;
|
||||
int done = 0;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue