Skip to content

Commit

Permalink
Fixed a 64-bit warning
Browse files Browse the repository at this point in the history
  • Loading branch information
justanotheranonymoususer committed Jun 25, 2015
1 parent 7924c66 commit 7067b18
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion clipboard.c
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ static BYTE *bitmap_to_dib(const HBITMAP hbmp, size_t *size)
BITMAP bmp;
BYTE *ret; // BITMAPINFO
DWORD biComp = BI_RGB;
size_t len;
DWORD len;
size_t hsize;
DWORD err;
int color_bit = 0;
Expand Down

0 comments on commit 7067b18

Please sign in to comment.