Convert tabs to spaces.
diff --git a/ndn-cpp/interest.cpp b/ndn-cpp/interest.cpp
index 7aa7e35..5417fa0 100644
--- a/ndn-cpp/interest.cpp
+++ b/ndn-cpp/interest.cpp
@@ -39,16 +39,16 @@
void Interest::set(const struct ndn_Interest &interestStruct)
{
name_.set(interestStruct.name);
- minSuffixComponents_ = interestStruct.minSuffixComponents;
- maxSuffixComponents_ = interestStruct.maxSuffixComponents;
-
- publisherPublicKeyDigest_.set(interestStruct.publisherPublicKeyDigest);
+ minSuffixComponents_ = interestStruct.minSuffixComponents;
+ maxSuffixComponents_ = interestStruct.maxSuffixComponents;
+
+ publisherPublicKeyDigest_.set(interestStruct.publisherPublicKeyDigest);
exclude_.set(interestStruct.exclude);
- childSelector_ = interestStruct.childSelector;
- answerOriginKind_ = interestStruct.answerOriginKind;
- scope_ = interestStruct.scope;
- interestLifetimeMilliseconds_ = interestStruct.interestLifetimeMilliseconds;
+ childSelector_ = interestStruct.childSelector;
+ answerOriginKind_ = interestStruct.answerOriginKind;
+ scope_ = interestStruct.scope;
+ interestLifetimeMilliseconds_ = interestStruct.interestLifetimeMilliseconds;
setVector(nonce_, interestStruct.nonce, interestStruct.nonceLength);
}