From 023efb1945185e4db085ea4745b735fe74b41f67 Mon Sep 17 00:00:00 2001 From: Waleed Khan Date: Tue, 16 Jun 2020 11:59:04 -0700 Subject: [PATCH] Update `--ignore-hh-version` messaging in `hh_shared.c` Summary: Everyone who uses this call-site uses `--ignore-hh-version` as the relevant flag, so call that out in the message (instead of just `ignore_hh_version`). Reviewed By: vsiles Differential Revision: D21978733 fbshipit-source-id: f6334b05310460408bb24d43e930eedeb028091f --- hphp/hack/src/heap/hh_shared.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hphp/hack/src/heap/hh_shared.c b/hphp/hack/src/heap/hh_shared.c index a5fa1c8aa3f..264a78812c0 100644 --- a/hphp/hack/src/heap/hh_shared.c +++ b/hphp/hack/src/heap/hh_shared.c @@ -2679,7 +2679,7 @@ static void verify_sqlite_header(sqlite3 *db, int ignore_hh_version) { BuildInfo_kRevision) != 0) { caml_failwith( "There was a build version mismatch when loading " - "dep table SQLite database (and `ignore_hh_version` is not set). " + "dep table SQLite database (and `--ignore-hh-version` was not passed). " "Not continuing with loading. " ); } -- 2.11.4.GIT