fix lint warning due to silly naming inconsitency

This commit is contained in:
Kurtis Rader 2017-05-09 21:01:27 -07:00
parent f0a00ab2f2
commit 3a0bb6b19a

View File

@ -182,7 +182,7 @@ class history_t {
// Attempts to rewrite the existing file to a target temporary file
// Returns false on error, true on success
bool rewrite_to_temporary_file(int tmp_fd, int existing_fd) const;
bool rewrite_to_temporary_file(int existing_fd, int dst_fd) const;
// Saves history by rewriting the file.
bool save_internal_via_rewrite();