Adapt inotify_nop to API changes
This commit is contained in:
		@@ -18,26 +18,25 @@
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
#include "autoreload.h"
 | 
					#include "autoreload.h"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
void arl_cleanup(arl_t *arl)
 | 
					 | 
				
			||||||
{
 | 
					 | 
				
			||||||
	(void) arl;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
bool arl_handle(arl_t *arl, const char *filepath)
 | 
					 | 
				
			||||||
{ 
 | 
					 | 
				
			||||||
	(void) arl;
 | 
					 | 
				
			||||||
	(void) filepath;
 | 
					 | 
				
			||||||
	return false;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
void arl_init(arl_t *arl)
 | 
					void arl_init(arl_t *arl)
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
	(void) arl;
 | 
						(void) arl;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					void arl_cleanup(arl_t *arl)
 | 
				
			||||||
 | 
					{
 | 
				
			||||||
 | 
						(void) arl;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
void arl_setup(arl_t *arl, const char *filepath)
 | 
					void arl_setup(arl_t *arl, const char *filepath)
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
	(void) arl;
 | 
						(void) arl;
 | 
				
			||||||
	(void) filepath;
 | 
						(void) filepath;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					bool arl_handle(arl_t *arl)
 | 
				
			||||||
 | 
					{ 
 | 
				
			||||||
 | 
						(void) arl;
 | 
				
			||||||
 | 
						return false;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user