Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix archlinux gcc 14 build failure issue #1

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions libsigrok/input/in_wav.c
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
#include <unistd.h>
#include <fcntl.h>
#include <string.h>
#include <strings.h>
#include "../log.h"
#include <stdlib.h>

Expand Down
1 change: 1 addition & 0 deletions libsigrok/lib_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@ static void make_demo_device_to_list();
static void process_attach_event(int isEvent);
static struct libusb_device* get_new_attached_usb_device();
static struct libusb_device* get_new_detached_usb_device();
extern SR_PRIV int sr_dslogic_option_value_to_code2(const struct sr_dev_inst *sdi, int config_id, const char *value);

static struct sr_lib_context lib_ctx = {
.event_callback = NULL,
Expand Down
1 change: 1 addition & 0 deletions libsigrok/strutil.c
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
#include "libsigrok-internal.h"
#include <stdlib.h>
#include <string.h>
#include <strings.h>
#include <stdio.h>
#include "log.h"

Expand Down