8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-24 19:23:02 +01:00

Fixed a typo.

This commit is contained in:
dimitr 2010-01-15 10:10:33 +00:00
parent 12015ddefe
commit 103c92c800

View File

@ -3287,9 +3287,9 @@ void write_global_fields()
MISC_terminate (X.RDB$FIELD_NAME, temp, l, sizeof(temp)); MISC_terminate (X.RDB$FIELD_NAME, temp, l, sizeof(temp));
BURP_verbose (149, temp); BURP_verbose (149, temp);
// msg 149 writing global field %.*s // msg 149 writing global field %.*s
if ((!X.RDB$QUERY_NAME.NULL && X.RDB$QUERY_NAME [0] != ' ') if (!X.RDB$QUERY_NAME.NULL && X.RDB$QUERY_NAME [0] != ' ')
PUT_TEXT (att_field_query_name, X.RDB$QUERY_NAME); PUT_TEXT (att_field_query_name, X.RDB$QUERY_NAME);
if ((!X.RDB$EDIT_STRING.NULL && X.RDB$EDIT_STRING [0] != ' ') if (!X.RDB$EDIT_STRING.NULL && X.RDB$EDIT_STRING [0] != ' ')
PUT_TEXT (att_field_edit_string, X.RDB$EDIT_STRING); PUT_TEXT (att_field_edit_string, X.RDB$EDIT_STRING);
put_source_blob (att_field_query_header, att_field_query_header, X.RDB$QUERY_HEADER); put_source_blob (att_field_query_header, att_field_query_header, X.RDB$QUERY_HEADER);
put_numeric (att_field_type, X.RDB$FIELD_TYPE); put_numeric (att_field_type, X.RDB$FIELD_TYPE);