Skip to content

Commit 9525384

Browse files
committed
Avoid inlining statics
1 parent 921fe50 commit 9525384

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/watcher.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,14 @@ static void Wprintf(const char *fmt, ...) {
1414

1515
}
1616

17-
static inline void watcher_error(FSW_HANDLE handle, const char *msg) {
17+
static void watcher_error(FSW_HANDLE handle, const char *msg) {
1818

1919
if (handle) fsw_destroy_session(handle);
2020
Rf_error("%s", msg);
2121

2222
}
2323

24-
static inline void watcher_unwind(watcher_cb *wcb) {
24+
static void watcher_unwind(watcher_cb *wcb) {
2525

2626
if (wcb->paths) {
2727
for (unsigned int i = 0; i < wcb->event_num; i++) {

0 commit comments

Comments
 (0)