Skip to content
Snippets Groups Projects
Commit da755639 authored by Pavel Cherenkov's avatar Pavel Cherenkov
Browse files

Minor stylistic changes

parent eec9eeb6
No related branches found
No related tags found
No related merge requests found
......@@ -76,7 +76,7 @@ static u_int32_t (*calc_crc32c)(u_int32_t crc, const unsigned char *buf,
unsigned int len) = NULL;
void
march_setup_crc32 ()
mach_setup_crc32 ()
{
#if defined (__i386__) || defined (__x86_64__)
calc_crc32c = cpu_has (cpuf_sse4_2) ? &crc32c_hw : &crc32c;
......
......@@ -394,9 +394,9 @@ initialize_minimal()
}
inline static void
march_init ()
mach_init ()
{
march_setup_crc32 ();
mach_setup_crc32 ();
}
int
......@@ -419,7 +419,7 @@ main(int argc, char **argv)
master_pid = getpid();
stat_init();
palloc_init();
march_init ();
mach_init ();
#ifdef HAVE_BFD
symbols_load(argv[0]);
......
......@@ -146,7 +146,7 @@ static inline struct row_v11 *row_v11(const struct tbuf *t)
return (struct row_v11 *)t->data;
}
void march_setup_crc32 ();
void mach_setup_crc32 ();
struct tbuf *convert_to_v11(struct tbuf *orig, u16 tag, u64 cookie, i64 lsn);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment