Skip to content

Commit

Permalink
Merge pull request #594 from jphickey/fix-593-off_t-signed
Browse files Browse the repository at this point in the history
Fix #593, change OCS_off_t to a signed type
  • Loading branch information
yammajamma authored Sep 10, 2020
2 parents 67c0f88 + d5f90dd commit fcc2684
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/unit-test-coverage/ut-stubs/inc/OCS_sys_types.h
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
/* types normally defined in sys/types.h */
/* ----------------------------------------- */
typedef ptrdiff_t OCS_ssize_t;
typedef size_t OCS_off_t;
typedef long OCS_off_t;
typedef unsigned int OCS_mode_t;
typedef long OCS_time_t;
typedef int OCS_pid_t;
Expand Down

0 comments on commit fcc2684

Please sign in to comment.