summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--libhb/hb_json.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libhb/hb_json.c b/libhb/hb_json.c
index 7c831e2e1..ee20503bf 100644
--- a/libhb/hb_json.c
+++ b/libhb/hb_json.c
@@ -480,7 +480,7 @@ hb_dict_t* hb_job_to_dict( const hb_job_t * job )
range_dict = json_pack_ex(&error, 0, "{s:o, s:o, s:o}",
"Type", hb_value_string("frame"),
"Start", hb_value_int(job->frame_to_start),
- "Stop", hb_value_int(job->frame_to_stop));
+ "End", hb_value_int(job->frame_to_stop));
}
else
{