Skip to content

Commit

Permalink
Fix compiler warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
fsphil committed Mar 29, 2011
1 parent 0be0bb9 commit 227f990
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions dec_s561.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
#include "fswebcam.h"
#include "src.h"
#include "log.h"
#include "dec.h"

/*fixme: not reentrant */
static unsigned int bit_bucket;
Expand Down
1 change: 1 addition & 0 deletions effects.c
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
#include <stdint.h>
#include <stdlib.h>
#include <string.h>
#include <ctype.h>
#include <gd.h>
#include "parse.h"
#include "log.h"
Expand Down
2 changes: 1 addition & 1 deletion parse.c
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ int parse_font(char *src, char **font, int *fontsize)
l = strlen(src);

/* Is the last element a font-size? */
if(p = strrchr(src, ':'))
if((p = strrchr(src, ':')))
{
int i = atoi(p + 1);

Expand Down

0 comments on commit 227f990

Please sign in to comment.