Compare commits

..

5 Commits

Author SHA1 Message Date
e0ac538e4f Ver .27.1 rm editorprj
All checks were successful
Altlinux build / build-alt (push) Successful in 1m6s
Archlinux build / build-arch (push) Successful in 6m5s
Archlinux build / make-test (push) Successful in 3m6s
Debian build / build-ubuntu (push) Successful in 3m50s
2026-03-22 19:38:04 +03:00
6fb4ace5cc Ver .27.1 fx .gitignore 2026-03-22 19:35:37 +03:00
6b73c068a0 Changed version to 0.27.1 2026-03-22 19:21:51 +03:00
eead012999 fix for GCC15
All checks were successful
Altlinux build / build-alt (push) Successful in 3m50s
Archlinux build / build-arch (push) Successful in 4m39s
Archlinux build / make-test (push) Successful in 2m8s
Debian build / build-ubuntu (push) Successful in 4m6s
2026-03-18 15:54:07 +03:00
981a9aba37 fixed for GCC 15 strict function prototyping on ArchLinux 2026-03-18 15:47:47 +03:00
7 changed files with 17 additions and 11 deletions

6
debian/changelog vendored
View File

@ -1,3 +1,9 @@
bforce (0.27.1) UNRELEASED; urgency=medium
* Fixed build under GCC15
-- Alexey Khromov <zx@zxalexis.ru> Sun, 22 Mar 2026 19:19:54 +0300
bforce (0.27) UNRELEASED; urgency=medium
* Fixed warnings from PVS-Studio analyser

View File

@ -1,6 +1,6 @@
Summary: Bforce, Fidonet mailer
Name: bforce
Version: 0.27
Version: 0.27.1
Release: %{_vendor}1
Copyright: GPL
Group: Fidonet/mailer

0
source/.ccls Normal file
View File

View File

@ -1 +1 @@
0.27
0.27.1

View File

@ -286,9 +286,9 @@ static int sm_tx_waitseq(s_tx_emsidat *d)
static s_states st_tx_emsidat[] =
{
{ "sm_tx_init", sm_tx_init },
{ "sm_tx_senddat", sm_tx_senddat },
{ "sm_tx_waitseq", sm_tx_waitseq }
{ "sm_tx_init", (int (*)(void *))sm_tx_init },
{ "sm_tx_senddat", (int (*)(void *))sm_tx_senddat },
{ "sm_tx_waitseq", (int (*)(void *))sm_tx_waitseq }
};
int emsi_send_emsidat(s_emsi *local_emsi)
@ -570,10 +570,10 @@ static int sm_rx_getdat(s_rx_emsidat *d)
static s_states st_rx_emsidat[] =
{
{ "sm_rx_init", sm_rx_init },
{ "sm_rx_sendnak", sm_rx_sendnak },
{ "sm_rx_waitseq", sm_rx_waitseq },
{ "sm_rx_getdat", sm_rx_getdat }
{ "sm_rx_init", (int (*)(void *))sm_rx_init },
{ "sm_rx_sendnak", (int (*)(void *))sm_rx_sendnak },
{ "sm_rx_waitseq", (int (*)(void *))sm_rx_waitseq },
{ "sm_rx_getdat", (int (*)(void *))sm_rx_getdat }
};
int emsi_recv_emsidat(s_emsi *remote_emsi)

View File

@ -3,7 +3,7 @@ dnl
dnl $Id$
dnl
#AC_INIT(bforce/bforce.c)
AC_INIT([bforce],[0.27],[zx@zxalexis.ru])
AC_INIT([bforce],[0.27.1],[zx@zxalexis.ru])
AC_CONFIG_HEADER(include/config.h)
AC_CANONICAL_SYSTEM
dnl # Minimum Autoconf version required.

View File

@ -72,7 +72,7 @@
struct states
{
const char *st_name;
int (*proc)();
int (*proc)(void *);
};
typedef struct states s_states;