Skip to content

Commit f981f04

Browse files
committed
fix some stray references to mojibake in the bench/ directory
1 parent e1fdad0 commit f981f04

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

bench/Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ CFLAGS = -O2 -std=c99 -pedantic -Wall
55

66
all: bench
77

8-
LIBMOJIBAKE = ../libmojibake.a
8+
LIBUTF8PROC = ../libutf8proc.a
99

10-
bench: bench.o util.o $(LIBMOJIBAKE)
11-
$(CC) $(CFLAGS) $(LDFLAGS) -o $@ bench.o util.o $(LIBMOJIBAKE)
10+
bench: bench.o util.o $(LIBUTF8PROC)
11+
$(CC) $(CFLAGS) $(LDFLAGS) -o $@ bench.o util.o $(LIBUTF8PROC)
1212

1313
DATAURL = https://raw.githubusercontent.com/duerst/eprun/master/benchmark
1414
DATAFILES = Deutsch_.txt Japanese_.txt Korean_.txt Vietnamese_.txt

bench/bench.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#include <stdlib.h>
33
#include <string.h>
44

5-
#include "mojibake.h"
5+
#include "utf8proc.h"
66
#include "util.h"
77

88
int main(int argc, char **argv)

0 commit comments

Comments
 (0)