diff --git a/source/blender/bmesh/tools/bmesh_region_match.c b/source/blender/bmesh/tools/bmesh_region_match.c
index bff1d3850b4fef345acf417425eb8264e49a872d..ced429e154a773f6bfe8ad3f2d7ee0c9dc038f27 100644
--- a/source/blender/bmesh/tools/bmesh_region_match.c
+++ b/source/blender/bmesh/tools/bmesh_region_match.c
@@ -1342,7 +1342,7 @@ static bool bm_vert_fasthash_edge_is_match(
 	        (e_a_fm[1] == e_b_fm[1]));
 }
 
-static void bm_vert_fasthash_distroy(
+static void bm_vert_fasthash_destroy(
         UUIDFashMatch *fm)
 {
 	MEM_freeN(fm);
@@ -1485,7 +1485,7 @@ int BM_mesh_region_match(
 
 #ifdef USE_PIVOT_FASTMATCH
 	if (fm) {
-		bm_vert_fasthash_distroy(fm);
+		bm_vert_fasthash_destroy(fm);
 	}
 #endif