btrfs-progs: use system's default path for math.h
Line of #include "math.h" in extent-tree.c using quotas is historical reason, (we had custom math.h before). Use "<>" instead of quotes in this header file. Signed-off-by: Zhao Lei <zhaolei@cn.fujitsu.com> Signed-off-by: David Sterba <dsterba@suse.com>
This commit is contained in:
parent
2b4000c551
commit
ca582727e8
|
@ -19,6 +19,7 @@
|
|||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <stdint.h>
|
||||
#include <math.h>
|
||||
#include "kerncompat.h"
|
||||
#include "radix-tree.h"
|
||||
#include "ctree.h"
|
||||
|
@ -28,7 +29,6 @@
|
|||
#include "crc32c.h"
|
||||
#include "volumes.h"
|
||||
#include "free-space-cache.h"
|
||||
#include "math.h"
|
||||
#include "utils.h"
|
||||
|
||||
#define PENDING_EXTENT_INSERT 0
|
||||
|
|
Loading…
Reference in New Issue