mirror of https://gitee.com/openkylin/libvirt.git
Fix indentions
This commit is contained in:
parent
7243752694
commit
cc3548abe3
|
@ -271,8 +271,8 @@ int virNetMessageEncodeNumFDs(virNetMessagePtr msg)
|
|||
|
||||
if (numFDs > VIR_NET_MESSAGE_NUM_FDS_MAX) {
|
||||
virReportError(VIR_ERR_RPC,
|
||||
_("Too many FDs to send %d, expected %d maximum"),
|
||||
numFDs, VIR_NET_MESSAGE_NUM_FDS_MAX);
|
||||
_("Too many FDs to send %d, expected %d maximum"),
|
||||
numFDs, VIR_NET_MESSAGE_NUM_FDS_MAX);
|
||||
goto cleanup;
|
||||
}
|
||||
|
||||
|
@ -309,8 +309,8 @@ int virNetMessageDecodeNumFDs(virNetMessagePtr msg)
|
|||
|
||||
if (numFDs > VIR_NET_MESSAGE_NUM_FDS_MAX) {
|
||||
virReportError(VIR_ERR_RPC,
|
||||
_("Received too many FDs %d, expected %d maximum"),
|
||||
numFDs, VIR_NET_MESSAGE_NUM_FDS_MAX);
|
||||
_("Received too many FDs %d, expected %d maximum"),
|
||||
numFDs, VIR_NET_MESSAGE_NUM_FDS_MAX);
|
||||
goto cleanup;
|
||||
}
|
||||
|
||||
|
|
|
@ -37,9 +37,9 @@
|
|||
* returns -1 if the file handle cannot be registered, 0 upon success
|
||||
*/
|
||||
int virEventPollAddHandle(int fd, int events,
|
||||
virEventHandleCallback cb,
|
||||
void *opaque,
|
||||
virFreeCallback ff);
|
||||
virEventHandleCallback cb,
|
||||
void *opaque,
|
||||
virFreeCallback ff);
|
||||
|
||||
/**
|
||||
* virEventPollUpdateHandle: change event set for a monitored file handle
|
||||
|
@ -74,9 +74,9 @@ int virEventPollRemoveHandle(int watch);
|
|||
* integer timer id upon success
|
||||
*/
|
||||
int virEventPollAddTimeout(int frequency,
|
||||
virEventTimeoutCallback cb,
|
||||
void *opaque,
|
||||
virFreeCallback ff);
|
||||
virEventTimeoutCallback cb,
|
||||
void *opaque,
|
||||
virFreeCallback ff);
|
||||
|
||||
/**
|
||||
* virEventPollUpdateTimeout: change frequency for a timer
|
||||
|
|
Loading…
Reference in New Issue