1
0
mirror of https://github.com/Tha14/toxic.git synced 2024-09-21 06:25:35 +02:00

Compare commits

..

No commits in common. "fbdc20dfa5c4d57519fdf1199e5cc82786c0fc4a" and "398aecdd923fa142b7e7bd3d4fa58251c1f21c15" have entirely different histories.

2 changed files with 6 additions and 2 deletions

View File

@ -28,7 +28,7 @@ jobs:
libx11-dev
python3-dev
pkg-config &&
git clone --depth=1 --recursive https://github.com/TokTok/c-toxcore &&
git clone --depth=1 https://github.com/TokTok/c-toxcore &&
cd c-toxcore &&
cmake . -B_build -DBOOTSTRAP_DAEMON=OFF &&
cd _build &&
@ -85,7 +85,7 @@ jobs:
make
python3-dev
pkg-config &&
git clone --depth=1 --recursive https://github.com/TokTok/c-toxcore &&
git clone --depth=1 https://github.com/TokTok/c-toxcore &&
cd c-toxcore &&
cmake . -B_build -DBOOTSTRAP_DAEMON=OFF &&
cd _build &&

View File

@ -258,6 +258,10 @@ void cb_toxcore_logger(Tox *m, TOX_LOG_LEVEL level, const char *file, uint32_t l
{
UNUSED_VAR(m);
if (level == TOX_LOG_LEVEL_TRACE) {
return;
}
FILE *fp = (FILE *)user_data;
if (!fp) {