core-lightning/tools/test
Rusty Russell b1738c5b89 tools: fix 32 bit compile error
```
tools/test/enum.c: In function ‘fromwire_test_enum’:
tools/test/enum.c:11:34: error: format ‘%ld’ expects argument of type ‘long int’, but argument 2 has type ‘size_t {aka unsigned int}’ [-Werror=format=]
  printf("fromwire_test_enum at %ld\n", *max);
```

and:

```
devtools/print_wire.c: In function ‘printwire_tlvs’:
devtools/print_wire.c:201:22: error: format ‘%ld’ expects argument of type ‘long int’, but argument 2 has type ‘u64 {aka long long unsigned int}’ [-Werror=format=]
    printf("**TYPE #%ld UNKNOWN for TLV %s**\n", type, fieldname);
                      ^
```
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
2019-07-25 11:41:48 +08:00
..
enum.c tools: fix 32 bit compile error 2019-07-25 11:41:48 +08:00
enum.h bolt-gen: handle enums 2019-07-24 06:31:46 +00:00
Makefile bolt-gen: rm unused bolt-generator; rename new bolt generator 2019-07-24 06:31:46 +00:00
run-test-wire.c bolt-gen-tests: namespace test tlv's under test_ 2019-07-24 02:52:53 +00:00
test_cases bolt-gen: use 'enum' instead of 'e:' prefix for enums 2019-07-24 06:31:46 +00:00