diff options
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/port/win32.h | 2 | ||||
-rw-r--r-- | src/include/storage/freespace.h | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/include/port/win32.h b/src/include/port/win32.h index d389e83a6cf..4453c903466 100644 --- a/src/include/port/win32.h +++ b/src/include/port/win32.h @@ -9,7 +9,7 @@ * Leave a higher value in place. When building with at least Visual * Studio 2015 the minimum requirement is Windows Vista (0x0600) to * get support for GetLocaleInfoEx() with locales. For everything else - * the minumum version is Windows XP (0x0501). + * the minimum version is Windows XP (0x0501). * Also for VS2015, add a define that stops compiler complaints about * using the old Winsock API. */ diff --git a/src/include/storage/freespace.h b/src/include/storage/freespace.h index 16c052b8bce..ce95ef3064d 100644 --- a/src/include/storage/freespace.h +++ b/src/include/storage/freespace.h @@ -33,8 +33,8 @@ extern void XLogRecordPageWithFreeSpace(RelFileNode rnode, BlockNumber heapBlk, extern void FreeSpaceMapTruncateRel(Relation rel, BlockNumber nblocks); extern void FreeSpaceMapVacuum(Relation rel); extern void UpdateFreeSpaceMap(Relation rel, - BlockNumber firtsBlkNum, - BlockNumber lastBlkNum, + BlockNumber startBlkNum, + BlockNumber endBlkNum, Size freespace); #endif /* FREESPACE_H_ */ |