Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion tee-supplicant/src/tee_supp_fs.c
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
* POSSIBILITY OF SUCH DAMAGE.
*/

#define _FILE_OFFSET_BITS 64
#define _GNU_SOURCE

#include <assert.h>
Expand Down Expand Up @@ -392,7 +393,7 @@ static TEEC_Result ree_fs_new_write(size_t num_params,
static TEEC_Result ree_fs_new_truncate(size_t num_params,
struct tee_ioctl_param *params)
{
size_t len = 0;
off_t len = 0;
int fd = 0;

if (num_params != 1 ||
Expand Down
Loading