Commit bac5566f authored by Radostin Stoyanov's avatar Radostin Stoyanov Committed by Andrei Vagin

Fix typo in function name

Signed-off-by: 's avatarRadostin Stoyanov <rstoyanov1@gmail.com>
parent c77a52ec
......@@ -1482,7 +1482,7 @@ static int cr_pre_dump_finish(int status)
if (ret)
goto err;
ret = invertory_save_uptime(&he);
ret = inventory_save_uptime(&he);
if (ret)
goto err;
......@@ -1899,7 +1899,7 @@ int cr_dump_tasks(pid_t pid)
if (ret)
goto err;
ret = invertory_save_uptime(&he);
ret = inventory_save_uptime(&he);
if (ret)
goto err;
......
......@@ -107,7 +107,7 @@ int write_img_inventory(InventoryEntry *he)
return 0;
}
int invertory_save_uptime(InventoryEntry *he)
int inventory_save_uptime(InventoryEntry *he)
{
if (!opts.track_mem)
return 0;
......
......@@ -12,7 +12,7 @@
extern int check_img_inventory(void);
extern int write_img_inventory(InventoryEntry *he);
extern int invertory_save_uptime(InventoryEntry *he);
extern int inventory_save_uptime(InventoryEntry *he);
extern InventoryEntry *get_parent_inventory(void);
extern int prepare_inventory(InventoryEntry *he);
struct pprep_head {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment