Skip to content

Commit 3a6b18a

Browse files
committed
Fix some syntax issues.
1 parent 54ca869 commit 3a6b18a

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
blank_issues_enabled: false
22
contact_links:
3-
- name: Questions, Help and Discussions
3+
- name: Questions and Discussions
44
url: https://github.com/bytedance/android-inline-hook/discussions
5-
about: Looking for help and discuss general questions.
5+
about: Looking for help. Discuss general issues.

clang-format.py

100644100755
File mode changed.

shadowhook/src/main/cpp/sh_jni.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@
2121

2222
// Created by Kelun Cai (caikelun@bytedance.com) on 2021-04-11.
2323

24+
#include <errno.h>
2425
#include <jni.h>
2526
#include <stdlib.h>
2627
#include <unistd.h>
2728

28-
#include "errno.h"
2929
#include "sh_log.h"
3030
#include "shadowhook.h"
3131

shadowhook/src/main/cpp/sh_task.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525

2626
#include <inttypes.h>
2727
#include <malloc.h>
28+
#include <poll.h>
2829
#include <pthread.h>
2930
#include <stdbool.h>
3031
#include <stdint.h>
@@ -33,7 +34,6 @@
3334
#include <sys/eventfd.h>
3435
#include <unistd.h>
3536

36-
#include "poll.h"
3737
#include "queue.h"
3838
#include "sh_config.h"
3939
#include "sh_errno.h"

0 commit comments

Comments
 (0)