Remove dead code and method name typo

This commit is contained in:
Casey McGinty 2018-09-11 11:56:50 -07:00
parent d4337b6f1d
commit 2224ecd718
No known key found for this signature in database
GPG Key ID: BA0229620046D260
2 changed files with 1 additions and 8 deletions

View File

@ -15,17 +15,10 @@
***************************************/
#include <stdlib.h> /* malloc, calloc, free */
#include <string.h> /* memset */
#include <stdio.h> /* fprintf(), stderr */
#include "error_private.h"
#include "zstd_internal.h"
/*-************************************
* Display Macros
**************************************/
#define DISPLAY(...) fprintf(stderr, __VA_ARGS__)
/*-****************************************
* Version
******************************************/

View File

@ -512,7 +512,7 @@ int main(int argCount, const char* argv[])
memset(&compressionParams, 0, sizeof(compressionParams));
/* init crash handler */
ZSTD_addAbortHandler();
FIO_addAbortHandler();
/* command switches */
for (argNb=1; argNb<argCount; argNb++) {