Skip to content

Commit

Permalink
Fixed error in steamtypes.h when building with certain versions of gcc.
Browse files Browse the repository at this point in the history
public/steam/steamtypes.h:85: error: integer constant is too large for ‘unsigned long’ type
  • Loading branch information
TheDS committed Sep 6, 2013
1 parent 8eaaf83 commit a0edb77
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion public/steam/steamtypes.h
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ typedef uint8 Salt_t[ k_cubSaltSize ];
typedef uint64 GID_t;

#ifdef __cplusplus
const GID_t k_GIDNil = 0xfffffffffffffffful;
const GID_t k_GIDNil = 0xffffffffffffffffull;
#else
#define k_GIDNil 0xffffffffffffffffull;
#endif
Expand Down

0 comments on commit a0edb77

Please sign in to comment.