aboutsummaryrefslogtreecommitdiff
path: root/src/include/crc32.h
diff options
context:
space:
mode:
authorGareth McMullin2015-03-28 20:47:17 -0700
committerGareth McMullin2015-03-28 20:47:17 -0700
commit9f271d5cd7c51251ec5e90a986f6f70a3fff75d8 (patch)
treeda33c45f5fceb6a5bbc3475740a0197bc78042b5 /src/include/crc32.h
parent1e54139f4a45d379c1cda7ad02a3f4a7d321b78e (diff)
Consistently use 'target *t' for target var.
Diffstat (limited to 'src/include/crc32.h')
-rw-r--r--src/include/crc32.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/crc32.h b/src/include/crc32.h
index 9966d8d..bd8d5c4 100644
--- a/src/include/crc32.h
+++ b/src/include/crc32.h
@@ -22,6 +22,6 @@
#define __CRC32_H
uint32_t crc32_calc(uint32_t crc, uint8_t data);
-uint32_t generic_crc32(struct target_s *target, uint32_t base, int len);
+uint32_t generic_crc32(target *t, uint32_t base, int len);
#endif