summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorGravatar Stefan Richter 2009-05-16 11:00:47 +0200
committerGravatar Dan Dennedy 2009-05-27 21:07:05 -0700
commitbabed1e589012862a7a42ab74a586928ff9184fe (patch)
tree3ddad3e34c97382842e3e76df0854145fe11168f /tools
parentbump version to 2.0.2 and add release notes (diff)
testlibraw: fix printing of local config ROM
Since "testlibraw: test all cards instead of only the first", the actual ROM content wasn't printed anymore due to a mistake in a printf format string. Signed-off-by: Stefan Richter <stefanr@s5r6.in-berlin.de> Signed-off-by: Dan Dennedy <dan@dennedy.org>
Diffstat (limited to '')
-rw-r--r--tools/testlibraw.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/testlibraw.c b/tools/testlibraw.c
index 82b8ee5..ea79bc7 100644
--- a/tools/testlibraw.c
+++ b/tools/testlibraw.c
@@ -132,7 +132,7 @@ test_config_rom(raw1394handle_t handle)
retval, rom_size, rom_version);
printf(" here are the first 10 quadlets:\n");
for (i = 0; i < 10; i++)
- printf(" 0x%08x\n", i, rom[i]);
+ printf(" 0x%08x\n", rom[i]);
retval = raw1394_update_config_rom(handle, rom, rom_size, rom_version);
printf(" update_config_rom returned %d\n", retval);
0'>2024-09-27read: bytevectorsGravatar Peter McGoron 1-1/+11 2024-09-27read: hash constants and directivesGravatar Peter McGoron 2-13/+38 2024-09-27read: properly restore state when reading datum commentsGravatar Peter McGoron 1-8/+20 2024-09-27read: document datum labelGravatar Peter McGoron 1-0/+8 2024-09-27read: change datum label to object, that returns an encapsulated datum labelGravatar Peter McGoron 1-33/+47 2024-09-27read: add object encapsulating identifierGravatar Peter McGoron 3-24/+49 2024-09-27Revert "add object helper functions"Gravatar Peter McGoron 3-159/+129 2024-09-27Revert "object: change to a stateful table"Gravatar Peter McGoron 4-95/+42 2024-09-27Revert "object: rename"Gravatar Peter McGoron 3-12/+8 2024-09-26object: renameGravatar Peter McGoron 3-8/+12 2024-09-26object: change to a stateful tableGravatar Peter McGoron 4-42/+95 2024-09-24add object helper functionsGravatar Peter McGoron 3-129/+159 2024-09-22miniscm: string->symbol and symbol->stringGravatar Peter McGoron 1-1/+17