imgtec-ci20: genimage config/ u-boot env
[openadk.git] / package / fprobe / patches / patch-src_fprobe_c
blob43197cf64c17f01c2405a7bf4fc55e2303fe3c55
1 --- fprobe-1.1.orig/src/fprobe.c        2005-01-30 09:43:35.000000000 +0100
2 +++ fprobe-1.1/src/fprobe.c     2024-02-20 07:18:30.403921178 +0100
3 @@ -393,7 +393,7 @@ void gettime(struct Time *now)
4         now->usec = t.tv_usec;
5  }
6  
7 -inline time_t cmpmtime(struct Time *t1, struct Time *t2)
8 +time_t cmpmtime(struct Time *t1, struct Time *t2)
9  {
10         return (t1->sec - t2->sec) * 1000 + (t1->usec - t2->usec) / 1000;
11  }
12 @@ -411,7 +411,7 @@ hash_t hash_flow(struct Flow *flow)
13         else return hash(flow, sizeof(struct Flow_TL));
14  }
16 -inline void copy_flow(struct Flow *src, struct Flow *dst)
17 +void copy_flow(struct Flow *src, struct Flow *dst)
18  {
19         dst->sip = src->sip;
20         dst->dip = src->dip;