aboutsummaryrefslogtreecommitdiffstats
path: root/file.h
diff options
context:
space:
mode:
authorJakub Zawadzki <darkjames-ws@darkjames.pl>2012-10-22 19:46:30 +0000
committerJakub Zawadzki <darkjames-ws@darkjames.pl>2012-10-22 19:46:30 +0000
commit7ba01c587ae74a47176d58a112a171e08ac197de (patch)
tree7e6e21d3a52f75f58d4ae5a3b2bfe9fabb00ee2a /file.h
parent9e52b48cc60a242426e81cd596b6ebccf4504e57 (diff)
Fix warning: file.c(776) : warning C4028: formal parameter 2 different from declaration
svn path=/trunk/; revision=45725
Diffstat (limited to 'file.h')
-rw-r--r--file.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/file.h b/file.h
index ea182446d8..621856e27e 100644
--- a/file.h
+++ b/file.h
@@ -182,7 +182,7 @@ cf_status_t cf_start_tail(capture_file *cf, const char *fname, gboolean is_tempf
* @param err the error code, if an error had occured
* @return one of cf_read_status_t
*/
-cf_read_status_t cf_continue_tail(capture_file *cf, volatile int to_read, int *err);
+cf_read_status_t cf_continue_tail(capture_file *cf, int to_read, int *err);
/**
* Fake reading packets from the "end" of a capture file.