Skip to content

Commit

Permalink
Avoid duplicate function naming ...
Browse files Browse the repository at this point in the history
  • Loading branch information
kripton committed Oct 28, 2014
1 parent f6d0236 commit 8c6283c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions fms.c
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@

/* ---------------------------------------------------------------------- */

static inline int check_sum256(const unsigned char *buf, int cnt)
static inline int fms_check_sum256(const unsigned char *buf, int cnt)
{
unsigned int sum = 0;

Expand All @@ -36,7 +36,7 @@ static inline int check_sum256(const unsigned char *buf, int cnt)

/* ---------------------------------------------------------------------- */

unsigned char disp_parm(unsigned char *bp, unsigned char param_len)
unsigned char fms_disp_parm(unsigned char *bp, unsigned char param_len)
{
unsigned char i, len;

Expand Down Expand Up @@ -390,7 +390,7 @@ static void fms_disp_packet(struct demod_state *s, unsigned char *bp, unsigned i

/* ---------------------------------------------------------------------- */

static void disp_packet(struct demod_state *s, unsigned char *bp, unsigned int len)
static void fms_disp_packet(struct demod_state *s, unsigned char *bp, unsigned int len)
{
unsigned char i,j;
(void) s; // Suppress the warning.
Expand Down

0 comments on commit 8c6283c

Please sign in to comment.