about summary refs log tree commit diff
path: root/src/afl-fuzz-misc.c
diff options
context:
space:
mode:
authorDominik Maier <domenukk@gmail.com>2020-03-10 22:04:05 +0100
committerDominik Maier <domenukk@gmail.com>2020-03-10 22:04:05 +0100
commitcc1d6b33b1524d52b21a6e9794ee6b0d6a2a9d50 (patch)
tree717c62b52076b37cb9d4e4efc9f33cf09dea723b /src/afl-fuzz-misc.c
parent2832cb643d90ff6bad7a6ba4ff139988f10b171a (diff)
downloadafl++-cc1d6b33b1524d52b21a6e9794ee6b0d6a2a9d50.tar.gz
unified pointer placement
Diffstat (limited to 'src/afl-fuzz-misc.c')
-rw-r--r--src/afl-fuzz-misc.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/afl-fuzz-misc.c b/src/afl-fuzz-misc.c
index 0da0cb0a..29e8bd82 100644
--- a/src/afl-fuzz-misc.c
+++ b/src/afl-fuzz-misc.c
@@ -29,7 +29,7 @@
    returned should be five characters or less for all the integers we reasonably
    expect to see. */
 
-u8* DI(u64 val) {
+u8 *DI(u64 val) {
 
   static u8 tmp[12][16];
   static u8 cur;
@@ -90,7 +90,7 @@ u8* DI(u64 val) {
 /* Describe float. Similar to the above, except with a single
    static buffer. */
 
-u8* DF(double val) {
+u8 *DF(double val) {
 
   static u8 tmp[16];
 
@@ -114,7 +114,7 @@ u8* DF(double val) {
 
 /* Describe integer as memory size. */
 
-u8* DMS(u64 val) {
+u8 *DMS(u64 val) {
 
   static u8 tmp[12][16];
   static u8 cur;
@@ -164,7 +164,7 @@ u8* DMS(u64 val) {
 
 /* Describe time delta. Returns one static buffer, 34 chars of less. */
 
-u8* DTD(u64 cur_ms, u64 event_ms) {
+u8 *DTD(u64 cur_ms, u64 event_ms) {
 
   static u8 tmp[64];
   u64       delta;