|
1 | 1 | /*------------------------------------------------------------------------- |
2 | 2 | * |
3 | 3 | * jsquery_support.c |
4 | | - *Functions and operations to support jsquery |
| 4 | + *Functions and operations to support jsquery |
5 | 5 | * |
6 | 6 | * Copyright (c) 2014, PostgreSQL Global Development Group |
7 | 7 | * Author: Teodor Sigaev <teodor@sigaev.ru> |
8 | 8 | * |
9 | 9 | * IDENTIFICATION |
10 | | - *contrib/jsquery/jsquery_support.c |
| 10 | + *contrib/jsquery/jsquery_support.c |
11 | 11 | * |
12 | 12 | *------------------------------------------------------------------------- |
13 | 13 | */ |
|
22 | 22 | } while(0)\ |
23 | 23 |
|
24 | 24 | #defineread_int32(v,b,p) do {\ |
25 | | -(v) = *(uint32*)((b) + (p));\ |
| 25 | +(v) = *(uint32*)((b) + (p));\ |
26 | 26 | (p) += sizeof(int32);\ |
27 | 27 | } while(0)\ |
28 | 28 |
|
|