contrib/coccinelle: fix semantic patch for oid_to_hex_r()

Both sha1_to_hex_r() and oid_to_hex_r() take two parameters, so use two
expressions in the semantic patch for transforming calls of the former
to the latter one.

Signed-off-by: Rene Scharfe <l.s.r@web.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
René Scharfe 2016-09-15 20:30:52 +02:00 коммит произвёл Junio C Hamano
Родитель 91942260a2
Коммит 76d156766f
1 изменённых файлов: 6 добавлений и 6 удалений

Просмотреть файл

@ -23,16 +23,16 @@ expression E1;
+ oid_to_hex(E1)
@@
expression E1;
expression E1, E2;
@@
- sha1_to_hex_r(E1.hash)
+ oid_to_hex_r(&E1)
- sha1_to_hex_r(E1, E2.hash)
+ oid_to_hex_r(E1, &E2)
@@
expression E1;
expression E1, E2;
@@
- sha1_to_hex_r(E1->hash)
+ oid_to_hex_r(E1)
- sha1_to_hex_r(E1, E2->hash)
+ oid_to_hex_r(E1, E2)
@@
expression E1;